x.py test: compile-fail-fulldeps failures are reported as if they are in compile-fail #40712
Labels
A-testsuite
Area: The testsuite used to check the correctness of rustc
C-bug
Category: This is a bug.
T-bootstrap
Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap)
When I naively run
x.py test --stage 1
, I will get failures from tests that require a stage 2 compiler. This is expected behavior.However, I also expect for the report of the failure to reflect the fact that the failing tests were in one of the subdirectories dedicated to such tests, such as
compile-fail-fulldeps
orrun-pass-fulldeps
.Unfortunately, today it seems that if you do the naive run of
x.py test --stage 1
, the summary of the failing tests presents a very misleading picture:I can live with the fact that its using the prefix
[compile-fail]
; I don't know why it is, but if people want a short category there, fine.But it really should also present the correct file path after that prefix (e.g. compile-fail-fulldeps/proc-macro/derive-bad.rs), both so that
The text was updated successfully, but these errors were encountered: