You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unit tests in the folder test fail randomly. On a quick look it seems like the failure is because of using React::MainLoop multiple times and the issue goes away when all the tests are modified to use React::Loop.
The text was updated successfully, but these errors were encountered:
Many tests today use React::MainLoop, including dns.cpp, read.cpp, thread.cpp, timing.cpp and worker.cpp. So when the test is executed, MainLoop is created and destroyed more than once - I haven't checked if that would be a problem though, but the issue goes away when I replace React::MainLoop with React::Loop in these files.
Unit tests in the folder test fail randomly. On a quick look it seems like the failure is because of using
React::MainLoop
multiple times and the issue goes away when all the tests are modified to useReact::Loop
.The text was updated successfully, but these errors were encountered: