Skip to content

Commit

Permalink
Ignore check-run-results tests for wasm32-bare
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
nathanwhit committed Sep 2, 2019
1 parent 12e0420 commit bf44f12
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/tools/compiletest/src/header.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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) &&
Expand Down

0 comments on commit bf44f12

Please sign in to comment.