Skip to content

Commit c93a364

Browse files
authored
Merge pull request #261 from clubby789/fix-panic-ice
Detect more kinds of ICE
2 parents b236c1b + 4db8017 commit c93a364

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: src/main.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,8 @@ impl Config {
265265
);
266266

267267
let saw_ice = stderr_utf8.contains("error: internal compiler error")
268-
|| stderr_utf8.contains("' has overflowed its stack");
268+
|| stderr_utf8.contains("' has overflowed its stack")
269+
|| stderr_utf8.contains("error: the compiler unexpectedly panicked");
269270

270271
let input = (self.args.regress, status.success());
271272
let result = match input {

0 commit comments

Comments
 (0)