Skip to content

Commit bbc89b2

Browse files
committed
Fix rust issue rust-lang#52163
1 parent 990a2ff commit bbc89b2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/bootstrap/test.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -966,7 +966,9 @@ impl Step for Compiletest {
966966
builder.ensure(compile::Rustc { compiler, target });
967967
}
968968

969-
builder.ensure(compile::Test { compiler, target });
969+
if builder.no_std(target) == Some(false) {
970+
builder.ensure(compile::Test { compiler, target });
971+
}
970972
builder.ensure(native::TestHelpers { target });
971973
builder.ensure(RemoteCopyLibs { compiler, target });
972974

0 commit comments

Comments
 (0)