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

Comparing jsr166/src/test/tck/ArrayBlockingQueueTest.java (file contents):
Revision 1.87 by jsr166, Sun May 14 00:56:43 2017 UTC vs.
Revision 1.89 by jsr166, Sun May 14 04:02:06 2017 UTC

# Line 362 | Line 362 | public class ArrayBlockingQueueTest exte
362                  pleaseTake.countDown();
363                  q.put(86);
364  
365 +                Thread.currentThread().interrupt();
366 +                try {
367 +                    q.put(99);
368 +                    shouldThrow();
369 +                } catch (InterruptedException success) {}
370 +                assertFalse(Thread.interrupted());
371 +
372                  pleaseInterrupt.countDown();
373                  try {
374                      q.put(99);
# Line 498 | Line 505 | public class ArrayBlockingQueueTest exte
505          Thread t = newStartedThread(new CheckedRunnable() {
506              public void realRun() throws InterruptedException {
507                  long startTime = System.nanoTime();
508 <                for (int i = 0; i < SIZE; ++i) {
508 >                for (int i = 0; i < SIZE; i++)
509                      assertEquals(i, (int) q.poll(LONG_DELAY_MS, MILLISECONDS));
510 <                }
510 >
511 >                Thread.currentThread().interrupt();
512 >                try {
513 >                    q.poll(LONG_DELAY_MS, MILLISECONDS);
514 >                    shouldThrow();
515 >                } catch (InterruptedException success) {}
516 >                assertFalse(Thread.interrupted());
517  
518                  pleaseInterrupt.countDown();
519                  try {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines