Ignore check-run-results tests for wasm32-bare
Ignores run-pass tests with the `check-run-results` flag enabled for the wasm32-bare ("wasm32-unknown-unknown") target, as it does not support printing to stdout/stderr.
This commit is contained in:
parent
12e0420268
commit
bf44f12d66
@ -137,6 +137,11 @@ impl EarlyProps {
|
||||
config.parse_needs_sanitizer_support(ln) {
|
||||
props.ignore = Ignore::Ignore;
|
||||
}
|
||||
|
||||
if config.target == "wasm32-unknown-unknown" && config.parse_check_run_results(ln) {
|
||||
props.ignore = Ignore::Ignore;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
if (config.mode == common::DebugInfoGdb || config.mode == common::DebugInfoGdbLldb) &&
|
||||
|
Loading…
x
Reference in New Issue
Block a user