We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 659feac commit 9ee26a6Copy full SHA for 9ee26a6
src/bootstrap/src/core/build_steps/test.rs
@@ -3744,6 +3744,15 @@ impl Step for CodegenGCC {
3744
return;
3745
}
3746
3747
+ // It we were running with GCC backend tests, no need to run these tests.
3748
+ if let Some(codegen_backend) = run.builder.config.cmd.test_codegen_backend() {
3749
+ if codegen_backend.is_gcc() {
3750
+ return;
3751
+ }
3752
+ } else if run.builder.config.default_codegen_backend(compiler.host).is_gcc() {
3753
3754
3755
+
3756
if builder.download_rustc() {
3757
builder.info("CI rustc uses the default codegen backend. skipping");
3758
0 commit comments