--- jsr166/src/test/tck/ForkJoinPool8Test.java 2016/08/16 23:02:57 1.33 +++ jsr166/src/test/tck/ForkJoinPool8Test.java 2016/08/16 23:17:13 1.34 @@ -274,7 +274,6 @@ public class ForkJoinPool8Test extends J // test join() assertSame(f, f.fork()); currentThread.interrupt(); - assertTrue(currentThread.isInterrupted()); assertNull(f.join()); Thread.interrupted(); assertEquals(21, f.result); @@ -284,7 +283,6 @@ public class ForkJoinPool8Test extends J f.cancel(true); assertSame(f, f.fork()); currentThread.interrupt(); - assertTrue(currentThread.isInterrupted()); try { f.join(); shouldThrow(); @@ -297,7 +295,6 @@ public class ForkJoinPool8Test extends J f.completeExceptionally(new FJException()); assertSame(f, f.fork()); currentThread.interrupt(); - assertTrue(currentThread.isInterrupted()); try { f.join(); shouldThrow(); @@ -310,7 +307,6 @@ public class ForkJoinPool8Test extends J f = new FibAction(8); assertSame(f, f.fork()); currentThread.interrupt(); - assertTrue(currentThread.isInterrupted()); f.quietlyJoin(); Thread.interrupted(); assertEquals(21, f.result); @@ -320,7 +316,6 @@ public class ForkJoinPool8Test extends J f.cancel(true); assertSame(f, f.fork()); currentThread.interrupt(); - assertTrue(currentThread.isInterrupted()); f.quietlyJoin(); Thread.interrupted(); checkCancelled(f); @@ -329,7 +324,6 @@ public class ForkJoinPool8Test extends J f.completeExceptionally(new FJException()); assertSame(f, f.fork()); currentThread.interrupt(); - assertTrue(currentThread.isInterrupted()); f.quietlyJoin(); Thread.interrupted(); checkCompletedAbnormally(f, f.getException());