We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0cea662 + f5b8714 commit 5298e9dCopy full SHA for 5298e9d
src/main.rs
@@ -251,7 +251,10 @@ impl Config {
251
status, stdout_utf8, stderr_utf8
252
);
253
254
- let saw_ice = || -> bool { stderr_utf8.contains("error: internal compiler error") };
+ let saw_ice = || -> bool {
255
+ stderr_utf8.contains("error: internal compiler error")
256
+ || stderr_utf8.contains("thread 'rustc' has overflowed its stack")
257
+ };
258
259
let input = (self.regress_on(), status.success());
260
let result = match input {
0 commit comments