Skip to content

Commit

Permalink
detect linker error due to bus error and categorize it as spurious
Browse files Browse the repository at this point in the history
- sorted under NoSpace as thats the underlying reason for the bus error
  • Loading branch information
Skgland committed Dec 30, 2024
1 parent 4759ec5 commit 31306ad
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/runner/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,10 @@ fn run_cargo(
if line.contains("Address already in use") {
did_network = true;
}
if line.contains("collect2: fatal error: ld terminated with signal 7 [Bus error]") {
// the cause of the bus error is running out of disk space
ran_out_of_space = true;
}
if line.to_lowercase().contains("no space left on device") {
ran_out_of_space = true;
}
Expand Down

0 comments on commit 31306ad

Please sign in to comment.