-
Notifications
You must be signed in to change notification settings - Fork 29.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
investigate flaky parallel/test-worker-cleanup-handles #24005
Labels
flaky-test
Issues and PRs related to the tests with unstable failures on the CI.
windows
Issues and PRs related to the Windows platform.
worker
Issues and PRs related to Worker support.
Comments
Trott
added
windows
Issues and PRs related to the Windows platform.
flaky-test
Issues and PRs related to the tests with unstable failures on the CI.
worker
Issues and PRs related to Worker support.
labels
Oct 31, 2018
@nodejs/workers |
2 tasks
Still happens occasionally, see e.g. this run. |
test-rackspace-win2008r2-x64-6 11:08:41 not ok 527 parallel/test-worker-cleanup-handles
11:08:41 ---
11:08:41 duration_ms: 120.106
11:08:41 severity: fail
11:08:41 exitcode: 1
11:08:41 stack: |-
11:08:41 timeout
11:08:41 ... |
addaleax
added a commit
to addaleax/node
that referenced
this issue
Feb 3, 2019
The Windows ETW code is not written to be compatible with multi-threading, and in particular it relies on global state like a single static `uv_async_t`. Adding that to multiple threads would corrupt the corresponding loops' handle queues. This addresses the flakiness of at least `test-worker-exit-code` and very likely other flaky tests that relate to Worker threads on Windows as well. Fixes: nodejs#25847 Fixes: nodejs#25702 Fixes: nodejs#24005 Fixes: nodejs#23873
2 tasks
addaleax
added a commit
that referenced
this issue
Feb 6, 2019
The Windows ETW code is not written to be compatible with multi threading, and in particular it relies on global state like a single static `uv_async_t`. Adding that to multiple threads would corrupt the corresponding loops' handle queues. This addresses the flakiness of at least `test-worker-exit-code` and very likely other flaky tests that relate to Worker threads on Windows as well. Fixes: #25847 Fixes: #25702 Fixes: #24005 Fixes: #23873 PR-URL: #25907 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]> Reviewed-By: James M Snell <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
flaky-test
Issues and PRs related to the tests with unstable failures on the CI.
windows
Issues and PRs related to the Windows platform.
worker
Issues and PRs related to Worker support.
https://ci.nodejs.org/job/node-test-binary-windows/21154/COMPILED_BY=vs2017,RUNNER=win2008r2-vs2017,RUN_SUBSET=1/console on test-rackspace-win2008r2-x64-4
The text was updated successfully, but these errors were encountered: