Skip to content
This repository was archived by the owner on May 23, 2024. It is now read-only.

Commit 9850604

Browse files
committed
Print fixed ICEs' paths on glacier
1 parent c7837a1 commit 9850604

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,15 @@ fn main() -> Result<()> {
1515
})
1616
.collect::<Result<Vec<TestResult>, _>>()?;
1717

18+
let mut paths = Vec::new();
1819
for result in &failed {
1920
eprintln!("\n{}", result);
21+
paths.push(result.path());
2022
}
2123

2224
match failed.len() {
2325
0 => eprintln!("\nFinished: No fixed ICEs"),
24-
len => bail!("{} ICEs are now fixed!", len),
26+
len => bail!("{len} ICEs ({:?}) are now fixed!", paths),
2527
}
2628

2729
Ok(())

0 commit comments

Comments
 (0)