mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 01:04:03 +00:00
Treat no_std(target) == None case correctly.
This commit is contained in:
parent
76300903bc
commit
3f00b1c07b
@ -966,7 +966,7 @@ impl Step for Compiletest {
|
||||
builder.ensure(compile::Rustc { compiler, target });
|
||||
}
|
||||
|
||||
if builder.no_std(target) == Some(false) {
|
||||
if builder.no_std(target) != Some(true) {
|
||||
builder.ensure(compile::Test { compiler, target });
|
||||
}
|
||||
builder.ensure(native::TestHelpers { target });
|
||||
|
Loading…
Reference in New Issue
Block a user