Uh oh!
There was an error while loading. Please reload this page.
rustbuild: Add ./x.py test --no-fail-fast - #42363
Conversation
rust-highfive
commented
Jun 1, 2017
r? @aturon (rust_highfive has picked a reviewer for you, use r? to override) |
Mark-Simulacrum
commented
Jun 1, 2017
alexcrichton
commented
Jun 1, 2017
Thanks! I've personally held off on doing this in the past b/c I was hoping to add a general "keep going" flag but that'd require keeping track of dependencies between stages and likely changing everything to return In other words, looks great! @bors: r+ |
bors
commented
Jun 1, 2017
📌 Commit 4880ae8 has been approved by |
Mark-Simulacrum
commented
Jun 1, 2017
@bors rollup |
rustbuild: Add `./x.py test --no-fail-fast` This option forwards to each `cargo test` invocation, and applies the same logic across all test steps to keep going after failures. At the end, a brief summary line reports how many commands failed, if any. Note that if a test program fails to even start at all, or if an auxiliary build command related to testing fails, these are still left to stop everything right away. Fixesrust-lang#40219.
rustbuild: Add `./x.py test --no-fail-fast` This option forwards to each `cargo test` invocation, and applies the same logic across all test steps to keep going after failures. At the end, a brief summary line reports how many commands failed, if any. Note that if a test program fails to even start at all, or if an auxiliary build command related to testing fails, these are still left to stop everything right away. Fixesrust-lang#40219.
bors
commented
Jun 2, 2017
☔ The latest upstream changes (presumably #42128) made this pull request unmergeable. Please resolve the merge conflicts. |
This option forwards to each `cargo test` invocation, and applies the same logic across all test steps to keep going after failures. At the end, a brief summary line reports how many commands failed, if any. Note that if a test program fails to even start at all, or if an auxiliary build command related to testing fails, these are still left to stop everything right away. Fixesrust-lang#40219.
cuviper
commented
Jun 2, 2017
Rebased. I had to add a |
Mark-Simulacrum
commented
Jun 2, 2017
@bors r=alexcrichton |
bors
commented
Jun 2, 2017
📌 Commit 617aea4 has been approved by |
rustbuild: Add `./x.py test --no-fail-fast` This option forwards to each `cargo test` invocation, and applies the same logic across all test steps to keep going after failures. At the end, a brief summary line reports how many commands failed, if any. Note that if a test program fails to even start at all, or if an auxiliary build command related to testing fails, these are still left to stop everything right away. Fixesrust-lang#40219.
rustbuild: Add `./x.py test --no-fail-fast` This option forwards to each `cargo test` invocation, and applies the same logic across all test steps to keep going after failures. At the end, a brief summary line reports how many commands failed, if any. Note that if a test program fails to even start at all, or if an auxiliary build command related to testing fails, these are still left to stop everything right away. Fixesrust-lang#40219.
This option forwards to each
cargo testinvocation, and applies thesame logic across all test steps to keep going after failures. At the
end, a brief summary line reports how many commands failed, if any.
Note that if a test program fails to even start at all, or if an
auxiliary build command related to testing fails, these are still left
to stop everything right away.
Fixes#40219.