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.
x test compiletest
1 parent 4fb7768 commit 96488ccCopy full SHA for 96488cc
src/bootstrap/src/core/builder/tests.rs
@@ -2158,6 +2158,18 @@ mod snapshot {
2158
");
2159
}
2160
2161
+ #[test]
2162
+ fn test_compiletest_self_test() {
2163
+ let ctx = TestCtx::new();
2164
+ let steps = ctx.config("test").arg("compiletest").render_steps();
2165
+ insta::assert_snapshot!(steps, @r"
2166
+ [build] llvm <host>
2167
+ [build] rustc 0 <host> -> rustc 1 <host>
2168
+ [build] rustc 1 <host> -> std 1 <host>
2169
+ [build] rustdoc 1 <host>
2170
+ ");
2171
+ }
2172
+
2173
#[test]
2174
fn test_compiletest_suites_stage1() {
2175
let ctx = TestCtx::new();
0 commit comments