--- jsr166/src/test/tck/AbstractQueuedLongSynchronizerTest.java 2005/03/01 01:32:00 1.1 +++ jsr166/src/test/tck/AbstractQueuedLongSynchronizerTest.java 2006/05/18 10:29:23 1.4 @@ -464,7 +464,9 @@ public class AbstractQueuedLongSynchroni Thread t = new Thread(new InterruptedSyncRunnable(sync)); try { t.start(); + Thread.sleep(SHORT_DELAY_MS); t.interrupt(); + Thread.sleep(SHORT_DELAY_MS); sync.release(1); t.join(); } catch(Exception e){ @@ -953,7 +955,6 @@ public class AbstractQueuedLongSynchroni sync.acquire(1); c.signal(); sync.release(1); - assert(t.isInterrupted()); t.join(SHORT_DELAY_MS); assertFalse(t.isAlive()); }