We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7ea084 commit 879a4a5Copy full SHA for 879a4a5
src/bootstrap/src/core/builder/tests.rs
@@ -525,6 +525,7 @@ mod dist {
525
first(cache.all::<compile::Rustc>()),
526
&[
527
rustc!(TEST_TRIPLE_1 => TEST_TRIPLE_1, stage = 0),
528
+ rustc!(TEST_TRIPLE_1 => TEST_TRIPLE_2, stage = 0),
529
rustc!(TEST_TRIPLE_1 => TEST_TRIPLE_2, stage = 1),
530
]
531
);
@@ -796,7 +797,10 @@ mod dist {
796
797
// stage minus 1 if --stage is not 0. Very confusing!
798
assert_eq!(
799
first(builder.cache.all::<tool::Rustdoc>()),
- &[tool::Rustdoc { compiler: Compiler { host: a, stage: 2 } },]
800
+ &[
801
+ tool::Rustdoc { compiler: Compiler { host: a, stage: 1 } },
802
+ tool::Rustdoc { compiler: Compiler { host: a, stage: 2 } },
803
+ ]
804
805
}
806
0 commit comments