Skip to content
Snippets Groups Projects
Commit a11a2760 authored by Konstantin Osipov's avatar Konstantin Osipov
Browse files

Fix compilation failure when BFD is not installed.

Fix a compile failiure when BFD is not installed.
Make test results execution-order independent (fiber
id depends on how many fibers were created so far).
parent e0843902
No related branches found
No related tags found
No related merge requests found
......@@ -408,7 +408,9 @@ main(int argc, char **argv)
stat_init();
palloc_init();
#ifdef HAVE_BFD
load_symbols(argv[0]);
#endif
argv = init_set_proc_title(argc, argv);
main_argc = argc;
......
No preview for this file type
......@@ -148,10 +148,11 @@ exec admin "lua box.fiber.sleep(0.0001)"
exec admin "lua box.fiber.sleep('hello')"
exec admin "lua box.fiber.sleep(box, 0.001)"
exec admin "lua f = box.fiber.self()"
exec admin "lua old_id = f:id()"
exec admin "lua box.fiber.cancel(f)"
exec admin "lua f:id(), box.fiber.self():id()"
exec admin "lua box.fiber.self():id() == old_id + 2"
exec admin "lua box.fiber.cancel(box.fiber.self())"
exec admin "lua f:id(), box.fiber.self():id()"
exec admin "lua box.fiber.self():id() == old_id + 3"
exec admin "lua g = box.fiber.self()"
exec admin "lua f==g"
exec admin "lua function r() f = box.fiber.create(r) return (box.fiber.resume(f)) end"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment