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

Comparing jsr166/src/test/tck/PriorityBlockingQueueTest.java (file contents):
Revision 1.75 by jsr166, Sun May 14 00:48:20 2017 UTC vs.
Revision 1.76 by jsr166, Sun May 14 01:30:34 2017 UTC

# Line 404 | Line 404 | public class PriorityBlockingQueueTest e
404          Thread t = newStartedThread(new CheckedRunnable() {
405              public void realRun() throws InterruptedException {
406                  long startTime = System.nanoTime();
407 <                for (int i = 0; i < SIZE; ++i) {
407 >                for (int i = 0; i < SIZE; i++)
408                      assertEquals(i, (int) q.poll(LONG_DELAY_MS, MILLISECONDS));
409 <                }
409 >
410 >                Thread.currentThread().interrupt();
411 >                try {
412 >                    q.poll(LONG_DELAY_MS, MILLISECONDS);
413 >                    shouldThrow();
414 >                } catch (InterruptedException success) {}
415 >                assertFalse(Thread.interrupted());
416  
417                  pleaseInterrupt.countDown();
418                  try {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines