We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7822064 + 7ca7c8f commit dd5942dCopy full SHA for dd5942d
src/tools/compiletest/src/runtest.rs
@@ -2135,15 +2135,15 @@ impl<'test> TestCx<'test> {
2135
if let Some(ref p) = self.config.nodejs {
2136
args.push(p.clone());
2137
} else {
2138
- self.fatal("no NodeJS binary found (--nodejs)");
+ self.fatal("emscripten target requested and no NodeJS binary found (--nodejs)");
2139
}
2140
// If this is otherwise wasm, then run tests under nodejs with our
2141
// shim
2142
} else if self.config.target.contains("wasm32") {
2143
2144
2145
2146
+ self.fatal("wasm32 target requested and no NodeJS binary found (--nodejs)");
2147
2148
2149
let src = self
0 commit comments