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
I was trying to track down some intermittent failures with some new tests I was writing and write a script to run cargo test over and over. With master I see 3 distinct failures signatures:
This is due to an off-by-one error in sys::test_uio::test_readv. I have a change to fix this and will submit a PR.
failures:
---- sys::test_uio::test_readv stdout ----
thread 'sys::test_uio::test_readv' panicked at 'Rng.gen_range called with low >= high', /home/joseph/.cargo/registry/src/github.com-0a35038f75765ae4/rand-0.3.8/src/lib.rs:441
failures:
sys::test_uio::test_readv
I think this is due to tests running tests in parallel and wait() waking up for a different child than expected. Is there a way to run tests in isolation?
failures:
---- test_unistd::test_wait stdout ----
thread 'test_unistd::test_wait' panicked at 'assertion failed: `(left == right)` (left: `Ok(Exited(21710))`, right: `Ok(Exited(21714))`)', test/test_unistd.rs:41
---- test_unistd::test_execve stdout ----
thread 'test_unistd::test_execve' panicked at 'called `Result::unwrap()` on an `Err` value: Sys(ECHILD)', ../src/libcore/result.rs:731
failures:
test_unistd::test_execve
test_unistd::test_wait
This one takes longer to reproduce. I'm not sure what the problem is here.
failures:
I was trying to track down some intermittent failures with some new tests I was writing and write a script to run
cargo test
over and over. With master I see 3 distinct failures signatures:This is due to an off-by-one error in sys::test_uio::test_readv. I have a change to fix this and will submit a PR.
failures:
I think this is due to tests running tests in parallel and wait() waking up for a different child than expected. Is there a way to run tests in isolation?
failures:
This one takes longer to reproduce. I'm not sure what the problem is here.
failures:
Please let me know if I should file 3 separate issues for these.
The text was updated successfully, but these errors were encountered: