Skip to content

Commit da4bf14

Browse files
committed
running compiletest with --compare-mode will now run, even if the stamp is up to date
1 parent da1febf commit da4bf14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/compiletest/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ pub fn make_test(config: &Config, testpaths: &TestPaths) -> test::TestDescAndFn
623623
};
624624

625625
// Debugging emscripten code doesn't make sense today
626-
let ignore = early_props.ignore || !up_to_date(config, testpaths, &early_props)
626+
let ignore = early_props.ignore || (!up_to_date(config, testpaths, &early_props) && config.compare_mode.is_none())
627627
|| (config.mode == DebugInfoGdb || config.mode == DebugInfoLldb)
628628
&& config.target.contains("emscripten");
629629

0 commit comments

Comments
 (0)