Skip to content

Commit a71c3ff

Browse files
committed
Auto merge of #125032 - compiler-errors:crash-dump-dir, r=onur-ozkan
Make crashes dump mir to build dir Set `-Zdump-mir-dir` for `crashes`-style tests. Alternatively, we just remove `tests/crashes/124436.rs`, since if the only way to get it to repro is via `-Zdump-mir`, then maybe it's not worth it to fix. Fixes #125029
2 parents 44fa5fd + 848f3c2 commit a71c3ff

File tree

1 file changed

+14
-8
lines changed

1 file changed

+14
-8
lines changed

src/tools/compiletest/src/runtest.rs

+14-8
Original file line numberDiff line numberDiff line change
@@ -2478,6 +2478,15 @@ impl<'test> TestCx<'test> {
24782478
}
24792479
}
24802480

2481+
let set_mir_dump_dir = |rustc: &mut Command| {
2482+
let mir_dump_dir = self.get_mir_dump_dir();
2483+
remove_and_create_dir_all(&mir_dump_dir);
2484+
let mut dir_opt = "-Zdump-mir-dir=".to_string();
2485+
dir_opt.push_str(mir_dump_dir.to_str().unwrap());
2486+
debug!("dir_opt: {:?}", dir_opt);
2487+
rustc.arg(dir_opt);
2488+
};
2489+
24812490
match self.config.mode {
24822491
Incremental => {
24832492
// If we are extracting and matching errors in the new
@@ -2532,13 +2541,7 @@ impl<'test> TestCx<'test> {
25322541
]);
25332542
}
25342543

2535-
let mir_dump_dir = self.get_mir_dump_dir();
2536-
remove_and_create_dir_all(&mir_dump_dir);
2537-
let mut dir_opt = "-Zdump-mir-dir=".to_string();
2538-
dir_opt.push_str(mir_dump_dir.to_str().unwrap());
2539-
debug!("dir_opt: {:?}", dir_opt);
2540-
2541-
rustc.arg(dir_opt);
2544+
set_mir_dump_dir(&mut rustc);
25422545
}
25432546
CoverageMap => {
25442547
rustc.arg("-Cinstrument-coverage");
@@ -2560,8 +2563,11 @@ impl<'test> TestCx<'test> {
25602563
Assembly | Codegen => {
25612564
rustc.arg("-Cdebug-assertions=no");
25622565
}
2566+
Crashes => {
2567+
set_mir_dump_dir(&mut rustc);
2568+
}
25632569
RunPassValgrind | Pretty | DebugInfo | Rustdoc | RustdocJson | RunMake
2564-
| CodegenUnits | JsDocTest | Crashes => {
2570+
| CodegenUnits | JsDocTest => {
25652571
// do not use JSON output
25662572
}
25672573
}

0 commit comments

Comments
 (0)