You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// WIP copy other stuff into here, see function above
1661
+
1662
+
todo!();
1663
+
}
1664
+
1653
1665
/// take the executable we used and the executables/runs output and determine whether the should raise an ICE or not (by looking at the exit status / stderr for example)
1654
1666
#[allow(non_snake_case)]
1655
1667
fnfind_ICE_string(
@@ -1785,6 +1797,15 @@ fn find_ICE_string(
1785
1797
1786
1798
let delay_span_bug_regex = Regex::new("^error: internal compiler error: no errors encountered even though `delay_span_bug` issued$").unwrap();
1787
1799
1800
+
/*
1801
+
for text in [&output.stdout, &output.stderr] {
1802
+
let text = String::from_utf8(text.clone()).unwrap_or_default();
0 commit comments