Skip to content

Commit bf44f12

Browse files
committed
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.
1 parent 12e0420 commit bf44f12

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/tools/compiletest/src/header.rs

+5
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,11 @@ impl EarlyProps {
137137
config.parse_needs_sanitizer_support(ln) {
138138
props.ignore = Ignore::Ignore;
139139
}
140+
141+
if config.target == "wasm32-unknown-unknown" && config.parse_check_run_results(ln) {
142+
props.ignore = Ignore::Ignore;
143+
}
144+
140145
}
141146

142147
if (config.mode == common::DebugInfoGdb || config.mode == common::DebugInfoGdbLldb) &&

0 commit comments

Comments
 (0)