--- jsr166/src/test/tck/LinkedBlockingDequeTest.java 2010/10/19 00:43:49 1.27 +++ jsr166/src/test/tck/LinkedBlockingDequeTest.java 2010/10/28 17:57:26 1.28 @@ -682,22 +682,6 @@ public class LinkedBlockingDequeTest ext } /** - * take blocks interruptibly when empty - */ - public void testTakeFromEmpty() throws InterruptedException { - final LinkedBlockingDeque q = new LinkedBlockingDeque(2); - Thread t = new ThreadShouldThrow(InterruptedException.class) { - public void realRun() throws InterruptedException { - q.take(); - }}; - - t.start(); - Thread.sleep(SHORT_DELAY_MS); - t.interrupt(); - t.join(); - } - - /** * Take removes existing elements until empty, then blocks interruptibly */ public void testBlockingTake() throws InterruptedException {