Skip to content

Commit dfa9948

Browse files
authored
Rollup merge of rust-lang#38289 - bluss:mir-verbose-test-fail, r=michaelwoerister
A more verbose matching failure for mir tests This makes it easier to work with mir test failures during development. - Show which expected line was not found - Show full expected output - Show full actual output
2 parents 2f4ca4e + 90c5b71 commit dfa9948

File tree

1 file changed

+19
-5
lines changed

1 file changed

+19
-5
lines changed

src/tools/compiletest/src/runtest.rs

+19-5
Original file line numberDiff line numberDiff line change
@@ -2294,7 +2294,18 @@ actual:\n\
22942294
};
22952295
}
22962296
if !found {
2297-
panic!("ran out of mir dump output to match against");
2297+
let normalize_all = dumped_string.lines()
2298+
.map(nocomment_mir_line)
2299+
.filter(|l| !l.is_empty())
2300+
.collect::<Vec<_>>()
2301+
.join("\n");
2302+
panic!("ran out of mir dump output to match against.\n\
2303+
Did not find expected line: {:?}\n\
2304+
Expected:\n{}\n\
2305+
Actual:\n{}",
2306+
expected_line,
2307+
expected_content.join("\n"),
2308+
normalize_all);
22982309
}
22992310
}
23002311
}
@@ -2439,11 +2450,14 @@ enum TargetLocation {
24392450
}
24402451

24412452
fn normalize_mir_line(line: &str) -> String {
2442-
let no_comments = if let Some(idx) = line.find("//") {
2453+
nocomment_mir_line(line).replace(char::is_whitespace, "")
2454+
}
2455+
2456+
fn nocomment_mir_line(line: &str) -> &str {
2457+
if let Some(idx) = line.find("//") {
24432458
let (l, _) = line.split_at(idx);
2444-
l
2459+
l.trim_right()
24452460
} else {
24462461
line
2447-
};
2448-
no_comments.replace(char::is_whitespace, "")
2462+
}
24492463
}

0 commit comments

Comments
 (0)