ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/tck/LinkedBlockingQueueTest.java
(Generate patch)

Comparing jsr166/src/test/tck/LinkedBlockingQueueTest.java (file contents):
Revision 1.31 by jsr166, Tue Oct 19 00:43:49 2010 UTC vs.
Revision 1.32 by jsr166, Thu Oct 28 17:57:26 2010 UTC

# Line 381 | Line 381 | public class LinkedBlockingQueueTest ext
381      }
382  
383      /**
384     * take blocks interruptibly when empty
385     */
386    public void testTakeFromEmpty() throws InterruptedException {
387        final LinkedBlockingQueue q = new LinkedBlockingQueue(2);
388        Thread t = new ThreadShouldThrow(InterruptedException.class) {
389            public void realRun() throws InterruptedException {
390                q.take();
391            }};
392
393        t.start();
394        Thread.sleep(SHORT_DELAY_MS);
395        t.interrupt();
396        t.join();
397    }
398
399    /**
384       * Take removes existing elements until empty, then blocks interruptibly
385       */
386      public void testBlockingTake() throws InterruptedException {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines