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 e99364e commit 7b8ae74Copy full SHA for 7b8ae74
src/bootstrap/src/core/builder/tests.rs
@@ -2145,6 +2145,18 @@ mod snapshot {
2145
");
2146
}
2147
2148
+ #[test]
2149
+ fn test_compiletest_self_test() {
2150
+ let ctx = TestCtx::new();
2151
+ let steps = ctx.config("test").arg("compiletest").render_steps();
2152
+ insta::assert_snapshot!(steps, @r"
2153
+ [build] llvm <host>
2154
+ [build] rustc 0 <host> -> rustc 1 <host>
2155
+ [build] rustc 1 <host> -> std 1 <host>
2156
+ [build] rustdoc 1 <host>
2157
+ ");
2158
+ }
2159
+
2160
#[test]
2161
fn test_compiletest_suites_stage1() {
2162
let ctx = TestCtx::new();
0 commit comments