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 225fa0f commit 1ba4e7bCopy full SHA for 1ba4e7b
src/bootstrap/build/mod.rs
@@ -342,6 +342,14 @@ impl Build {
342
check::compiletest(self, &compiler, target.target,
343
"codegen-units", "codegen-units");
344
}
345
+ CheckIncremental { compiler } => {
346
+ check::compiletest(self, &compiler, target.target,
347
+ "incremental", "incremental");
348
+ }
349
+ CheckUi { compiler } => {
350
351
+ "ui", "ui");
352
353
CheckDebuginfo { compiler } => {
354
if target.target.contains("msvc") ||
355
target.target.contains("android") {
src/bootstrap/build/step.rs
@@ -111,6 +111,8 @@ macro_rules! targets {
111
(check_pfail, CheckPFail { compiler: Compiler<'a> }),
112
(check_codegen, CheckCodegen { compiler: Compiler<'a> }),
113
(check_codegen_units, CheckCodegenUnits { compiler: Compiler<'a> }),
114
+ (check_incremental, CheckIncremental { compiler: Compiler<'a> }),
115
+ (check_ui, CheckUi { compiler: Compiler<'a> }),
116
(check_debuginfo, CheckDebuginfo { compiler: Compiler<'a> }),
117
(check_rustdoc, CheckRustdoc { compiler: Compiler<'a> }),
118
(check_pretty, CheckPretty { compiler: Compiler<'a> }),
@@ -412,6 +414,8 @@ impl<'a> Step<'a> {
412
414
Source::CheckPFail { compiler } |
413
415
Source::CheckCodegen { compiler } |
416
Source::CheckCodegenUnits { compiler } |
417
+ Source::CheckIncremental { compiler } |
418
+ Source::CheckUi { compiler } |
419
Source::CheckRustdoc { compiler } |
420
Source::CheckPretty { compiler } |
421
Source::CheckCFail { compiler } |
0 commit comments