--- jsr166/src/test/tck/CyclicBarrierTest.java 2011/05/28 14:52:11 1.21 +++ jsr166/src/test/tck/CyclicBarrierTest.java 2011/05/29 13:16:40 1.22 @@ -234,6 +234,7 @@ public class CyclicBarrierTest extends J * BrokenBarrierException */ public void testReset_BrokenBarrier() throws InterruptedException { + Thread.interrupted(); // ensure current thread not interrupted final CyclicBarrier c = new CyclicBarrier(3); final CountDownLatch pleaseReset = new CountDownLatch(2); Thread t1 = new ThreadShouldThrow(BrokenBarrierException.class) {