--- jsr166/src/test/tck/FutureTaskTest.java 2013/04/21 06:54:11 1.37 +++ jsr166/src/test/tck/FutureTaskTest.java 2013/06/19 05:54:45 1.38 @@ -481,10 +481,9 @@ public class FutureTaskTest extends JSR1 try { pleaseCancel.countDown(); delay(LONG_DELAY_MS); - shouldThrow(); - } catch (Throwable t) { - assertTrue(t instanceof InterruptedException); - } + threadShouldThrow(); + } catch (InterruptedException success) { + } catch (Throwable t) { threadUnexpectedException(t); } throw new RuntimeException(); }});