Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign uptest: Don't panic if some tests failed #27869
Conversation
This comment has been minimized.
This comment has been minimized.
|
r? @brson |
rust-highfive
assigned
brson
Aug 17, 2015
This comment has been minimized.
This comment has been minimized.
|
r? @brson (rust_highfive has picked a reviewer for you, use r? to override) |
This comment has been minimized.
This comment has been minimized.
|
@bors r+ |
This comment has been minimized.
This comment has been minimized.
|
|
This comment has been minimized.
This comment has been minimized.
|
Just wanted to mention that this prevents dropping of |
This comment has been minimized.
This comment has been minimized.
|
@nagisa do you have a specific problem in mind because of that? (NB. the process is exiting and the operating system will automatically reclaim the memory.) |
This comment has been minimized.
This comment has been minimized.
bors
added a commit
that referenced
this pull request
Aug 18, 2015
This comment has been minimized.
This comment has been minimized.
|
Only the fact that valgrind might complain.
|
alexcrichton commentedAug 17, 2015
This commit removes the call to
panic!("Some tests failed")at the end of alltests run when running with libtest. The panic is replaced with
std::process::exitto have a nonzero error code, but this change both:end of a failing test run that some tests failed. (this is already summarized
in the output of the test run).
RUST_BACKTRACEset it removes an extraneousbacktrace from the output (only failing tests will have their backtraces in
the output.