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:
nathanwhit 2019-09-02 12:00:55 -04:00
parent 12e0420268
commit bf44f12d66

View file

@ -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) &&