-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
[Distributed] Set stdin to devnull before closing it #44881
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me, let's see how CI does!
0b2eb3c
to
340587f
Compare
Buildkite CI looks good to me; |
Do I need to revert any other PRs to properly test this now? |
Just the |
I don't know why buildbot is broken, but most of buildkite looked good and just the common crashes in Pkg and LibGit2 tests on musl? |
@vtjnash There are some test failures in the https://buildkite.com/julialang/julia-master/builds/10862#cffe05fa-9ecb-4eb3-8255-0987bc738687
|
The rest passed, so I assume it is a flaky test with writing too much or too long of a path or something |
I've restarted it; let's see if it passes the second time. |
@staticfloat The Buildbot |
@vtjnash I get the same https://buildkite.com/julialang/julia-master/builds/10862#c5ccc5ab-aef0-43d2-a275-b8582bfaf614 |
6552c91
to
2a07bcf
Compare
Distributed closes and destroys stdin, but some tests attempted to explicitly use it, leading to test problems. We previously interpreted this as passing devnull, but this is better to be explicit.
This reverts commit 7401e92.
2a07bcf
to
e4accde
Compare
Both (Note: we skip |
This reverts commit 2ae677d.
* [Distributed] Set stdin to devnull before closing it Distributed closes and destroys stdin, but some tests attempted to explicitly use it, leading to test problems. We previously interpreted this as passing devnull, but this is better to be explicit. * Revert "Testsystem: for now, move the REPL tests to node 1 (#44880)" This reverts commit 7401e92.
Distributed closes and destroys stdin, but some tests attempted to
explicitly use it, leading to test problems. We previously interpreted
this as passing devnull, but this is better to be explicit.
@DilumAluthge @staticfloat