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
Platform: Linux stola-ThinkPad 3.16.0-38-generic io.js on The Changelog! #52~14.04.1-Ubuntu SMP Fri May 8 09:43:57 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux
Subsystem: addons-napi
addons-napi/test_uv_loop test is fragile. It does not protect itself from getting stuck in an unlimited wait of uv__io_poll(). In fact, the test freezes if I comment out SetupGarbageCollectionTracking(env); at the end of node::performance::Init(). In other words, the test finishes just because an unlimited wait of uv__io_poll() is terminated by an event coming from a garbage collection. When these events are disabled then the test stays in uv__io_poll() forever. The test should be updated not to depend on such fragile external events, i.e., it should use an idle handle, for example. In fact, I've just realized that the test is fixed in master branch for 3 months already. Is there any reason why the test is not fixed in v8.x branch as well?
The text was updated successfully, but these errors were encountered:
addons-napi/test_uv_loop
test is fragile. It does not protect itself from getting stuck in an unlimited wait ofuv__io_poll()
. In fact, the test freezes if I comment outSetupGarbageCollectionTracking(env);
at the end ofnode::performance::Init()
. In other words, the test finishes just because an unlimited wait ofuv__io_poll()
is terminated by an event coming from a garbage collection. When these events are disabled then the test stays inuv__io_poll()
forever. The test should be updated not to depend on such fragile external events, i.e., it should use an idle handle, for example. In fact, I've just realized that the test is fixed inmaster
branch for 3 months already. Is there any reason why the test is not fixed inv8.x
branch as well?The text was updated successfully, but these errors were encountered: