Skip to content

Commit

Permalink
Debug info for test only failing on circleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
jack-bolles committed Aug 9, 2023
1 parent eb71ddd commit 5cc4ad7
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -853,10 +853,11 @@ private void runAsync(Runnable test) {
try {
t.join(50);
} catch (InterruptedException e) {

System.out.println("t.getState() = " + t.getState());
}
//DEBUG on circleci
if(t.isAlive()) {
throw new RuntimeException("Failed to return from recursive argument processing");
throw new RuntimeException("Failed to return from recursive argument processing"+ "\nThreadState: "+t.getState());
}
}

Expand Down

0 comments on commit 5cc4ad7

Please sign in to comment.