compiletest: "ignore-debug" tests are ignored even with debug-assertions-std = false #115171
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)
Some tests need to be disabled when the standard library is built with debug assertions, since that can affect mir-opts codegen through inlining. For that purpose we have the
ignore-debug
clause in compiletest. However, unfortunately it seems like compiletest actually checks whether the compiler is built with debug assertions, even though that should not make any difference. I haveand these tests should not be ignored, but they are.
We should maybe rename the directive to
ignore-debug-std
to make it more clear what this is about.The text was updated successfully, but these errors were encountered: