x.py test
ignores --no-fail-fast
in some tool testsuites.
#108261
Labels
C-bug
Category: This is a bug.
T-bootstrap
Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap)
It looks like some tool testsuites (like
clippy
's orrustfmt
's) will ignore the no fail fast option. For example running./x.py test --no-fail-fast clippy
will stop after compile-test fails, something common in big endian platforms.If I understand correctly this seems to be because bootstrap is not passing
--no-fail-fast
tocargo test
in every tool implementation. Currently, the flag is passed in theStep
trait implementation of some tools (i.e. cargo), right after callingtool::prepare_tool_cargo()
. But others like mentioned clippy or rustfmt are missing it.The text was updated successfully, but these errors were encountered: