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 042451cCopy full SHA for 042451c
src/bootstrap/src/core/build_steps/test.rs
@@ -3744,6 +3744,20 @@ 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
3753
+ .builder
3754
+ .config
3755
+ .default_codegen_backend(compilers.target_compiler().host)
3756
+ .is_gcc()
3757
+ {
3758
3759
3760
+
3761
if builder.download_rustc() {
3762
builder.info("CI rustc uses the default codegen backend. skipping");
3763
0 commit comments