We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 302bf6b commit 469db7aCopy full SHA for 469db7a
BevoTest/src/edu/utexas/cs/bevotest/BevoTest.java
@@ -959,9 +959,11 @@ protected void tearingDown() throws IllegalStateException {
959
}
960
961
protected void caught(final Throwable t) {
962
- //assert caughtValue == null;
963
- caughtValue = t;
964
- setStatus(Status.COMPLETE_ABNORMAL);
+ if (caughtValue == null) {
+ caughtValue = t;
+ setStatus(Status.COMPLETE_ABNORMAL);
965
+ }
966
+ // silently discard subsequent exceptions
967
968
969
protected void timedOut(final StackTraceElement[] stackTrace) {
0 commit comments