-
Notifications
You must be signed in to change notification settings - Fork 17.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
os/signal: TestNohup is flaky #5526
Labels
FrozenDueToAge
Testing
An issue that has been verified to require only test changes, not just a test failure.
Milestone
Comments
Another one in this package. This was reported before as issue #4987. This test doesn't play well with multiple cpu values. This might be the only test in the standard library that has problems with this, so I think it's worth fixing. go test -v -cpu 1,2,4 -timeout=60m std === RUN TestSignal --- PASS: TestSignal (0.00 seconds) signal_test.go:39: sighup... signal_test.go:48: sigwinch... signal_test.go:56: sigwinch... signal_test.go:59: sigwinch... === RUN TestStress --- PASS: TestStress (3.01 seconds) === RUN TestStop --- PASS: TestStop (0.06 seconds) === RUN TestNohup --- PASS: TestNohup (0.24 seconds) === RUN TestSignal-2 --- PASS: TestSignal-2 (0.00 seconds) signal_test.go:39: sighup... signal_test.go:48: sigwinch... signal_test.go:56: sigwinch... signal_test.go:59: sigwinch... === RUN TestStress-2 --- PASS: TestStress-2 (3.01 seconds) === RUN TestStop-2 --- PASS: TestStop-2 (0.06 seconds) === RUN TestNohup-2 --- PASS: TestNohup-2 (0.24 seconds) === RUN TestSignal-4 --- FAIL: TestSignal-4 (0.00 seconds) signal_test.go:39: sighup... signal_test.go:48: sigwinch... signal_test.go:25: signal was child exited, want window changed |
Another one in this package. This was reported before as issue #4987. This test doesn't play well with multiple cpu values. This might be the only test in the standard library that has problems with this, so I think it's worth fixing. go test -v -cpu 1,2,4 -timeout=60m std === RUN TestSignal --- PASS: TestSignal (0.00 seconds) signal_test.go:39: sighup... signal_test.go:48: sigwinch... signal_test.go:56: sigwinch... signal_test.go:59: sigwinch... === RUN TestStress --- PASS: TestStress (3.01 seconds) === RUN TestStop --- PASS: TestStop (0.06 seconds) === RUN TestNohup --- PASS: TestNohup (0.24 seconds) === RUN TestSignal-2 --- PASS: TestSignal-2 (0.00 seconds) signal_test.go:39: sighup... signal_test.go:48: sigwinch... signal_test.go:56: sigwinch... signal_test.go:59: sigwinch... === RUN TestStress-2 --- PASS: TestStress-2 (3.01 seconds) === RUN TestStop-2 --- PASS: TestStop-2 (0.06 seconds) === RUN TestNohup-2 --- PASS: TestNohup-2 (0.24 seconds) === RUN TestSignal-4 --- FAIL: TestSignal-4 (0.00 seconds) signal_test.go:39: sighup... signal_test.go:48: sigwinch... signal_test.go:25: signal was child exited, want window changed |
Russ loves signals. Labels changed: added priority-later, removed priority-triage. Owner changed to @rsc. |
alberts
added
fixed
Testing
An issue that has been verified to require only test changes, not just a test failure.
labels
Feb 5, 2014
This issue was closed.
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
FrozenDueToAge
Testing
An issue that has been verified to require only test changes, not just a test failure.
The text was updated successfully, but these errors were encountered: