--- jsr166/src/test/tck/JSR166TestCase.java 2003/12/23 19:40:24 1.11 +++ jsr166/src/test/tck/JSR166TestCase.java 2003/12/25 19:48:57 1.12 @@ -466,6 +466,16 @@ public class JSR166TestCase extends Test } } + class LongPossiblyInterruptedRunnable implements Runnable { + public void run() { + try { + Thread.sleep(LONG_DELAY_MS); + } + catch(InterruptedException success) { + } + } + } + /** * For use as ThreadFactory in constructors */