Skip to content

Commit

Permalink
explicitly terminate jvm in mutation minion
Browse files Browse the repository at this point in the history
  • Loading branch information
hcoles committed Oct 30, 2023
1 parent 495a8de commit c55ee14
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 102 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ public void apply(final byte control, final SafeDataInputStream is) {
case Id.REPORT:
handleReport(is);
break;
default:
LOG.severe("Unknown control byte " + control);
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,11 @@ public void run() {
tests, this.reporter));

this.reporter.done(ExitCode.OK);

// rudely kill the vm in case it is kept alive
// by threads launched by client
System.exit(0);

} catch (final Throwable ex) {
ex.printStackTrace(System.out);
LOG.log(Level.WARNING, "Error during mutation test", ex);
Expand Down

This file was deleted.

0 comments on commit c55ee14

Please sign in to comment.