Skip to content

Commit 879a4a5

Browse files
committed
bless tests
Signed-off-by: onur-ozkan <[email protected]>
1 parent b7ea084 commit 879a4a5

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/bootstrap/src/core/builder/tests.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -525,6 +525,7 @@ mod dist {
525525
first(cache.all::<compile::Rustc>()),
526526
&[
527527
rustc!(TEST_TRIPLE_1 => TEST_TRIPLE_1, stage = 0),
528+
rustc!(TEST_TRIPLE_1 => TEST_TRIPLE_2, stage = 0),
528529
rustc!(TEST_TRIPLE_1 => TEST_TRIPLE_2, stage = 1),
529530
]
530531
);
@@ -796,7 +797,10 @@ mod dist {
796797
// stage minus 1 if --stage is not 0. Very confusing!
797798
assert_eq!(
798799
first(builder.cache.all::<tool::Rustdoc>()),
799-
&[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+
]
800804
);
801805
}
802806

0 commit comments

Comments
 (0)