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 c70d633 commit b8ebc13Copy full SHA for b8ebc13
src/bootstrap/lib.rs
@@ -390,8 +390,10 @@ impl Build {
390
"mir-opt", "mir-opt");
391
}
392
CheckCodegen { compiler } => {
393
- check::compiletest(self, &compiler, target.target,
394
- "codegen", "codegen");
+ if self.config.codegen_tests {
+ check::compiletest(self, &compiler, target.target,
395
+ "codegen", "codegen");
396
+ }
397
398
CheckCodegenUnits { compiler } => {
399
check::compiletest(self, &compiler, target.target,
0 commit comments