Skip to content

Commit 4db8017

Browse files
committed
Detect more kinds of ICE
1 parent b236c1b commit 4db8017

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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)