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

Comparing jsr166/src/test/tck/ForkJoinTask8Test.java (file contents):
Revision 1.6 by jsr166, Wed Dec 31 17:00:58 2014 UTC vs.
Revision 1.22 by dl, Thu Oct 8 23:02:21 2015 UTC

# Line 3 | Line 3
3   * Expert Group and released to the public domain, as explained at
4   * http://creativecommons.org/publicdomain/zero/1.0/
5   */
6 < import java.util.HashSet;
6 >
7 > import static java.util.concurrent.TimeUnit.MILLISECONDS;
8 > import static java.util.concurrent.TimeUnit.SECONDS;
9 >
10 > import java.util.Arrays;
11 > import java.util.Collections;
12 > import java.util.concurrent.CountDownLatch;
13   import java.util.concurrent.ExecutionException;
14   import java.util.concurrent.ForkJoinPool;
15   import java.util.concurrent.ForkJoinTask;
16 + import java.util.concurrent.ForkJoinWorkerThread;
17   import java.util.concurrent.RecursiveAction;
18   import java.util.concurrent.TimeoutException;
19 < import static java.util.concurrent.TimeUnit.MILLISECONDS;
20 < import static java.util.concurrent.TimeUnit.SECONDS;
21 < import junit.framework.*;
19 >
20 > import junit.framework.Test;
21 > import junit.framework.TestSuite;
22  
23   public class ForkJoinTask8Test extends JSR166TestCase {
24  
# Line 30 | Line 37 | public class ForkJoinTask8Test extends J
37      static final short EXCEPTION_STATE = 1;
38  
39      public static void main(String[] args) {
40 <        junit.textui.TestRunner.run(suite());
40 >        main(suite(), args);
41      }
42  
43      public static Test suite() {
# Line 55 | Line 62 | public class ForkJoinTask8Test extends J
62                                  null, true);
63      }
64  
65 +    // Compute fib naively and efficiently
66 +    final int[] fib;
67 +    {
68 +        int[] fib = new int[10];
69 +        fib[0] = 0;
70 +        fib[1] = 1;
71 +        for (int i = 2; i < fib.length; i++)
72 +            fib[i] = fib[i - 1] + fib[i - 2];
73 +        this.fib = fib;
74 +    }
75 +
76      private void testInvokeOnPool(ForkJoinPool pool, RecursiveAction a) {
77 <        try {
77 >        try (PoolCleaner cleaner = cleaner(pool)) {
78              assertFalse(a.isDone());
79              assertFalse(a.isCompletedNormally());
80              assertFalse(a.isCompletedAbnormally());
# Line 72 | Line 90 | public class ForkJoinTask8Test extends J
90              assertFalse(a.isCancelled());
91              assertNull(a.getException());
92              assertNull(a.getRawResult());
75        } finally {
76            joinPool(pool);
93          }
94      }
95  
# Line 110 | Line 126 | public class ForkJoinTask8Test extends J
126  
127          {
128              Thread.currentThread().interrupt();
129 <            long t0 = System.nanoTime();
129 >            long startTime = System.nanoTime();
130              assertSame(expected, a.join());
131 <            assertTrue(millisElapsedSince(t0) < SMALL_DELAY_MS);
131 >            assertTrue(millisElapsedSince(startTime) < SMALL_DELAY_MS);
132              Thread.interrupted();
133          }
134  
135          {
136              Thread.currentThread().interrupt();
137 <            long t0 = System.nanoTime();
137 >            long startTime = System.nanoTime();
138              a.quietlyJoin();        // should be no-op
139 <            assertTrue(millisElapsedSince(t0) < SMALL_DELAY_MS);
139 >            assertTrue(millisElapsedSince(startTime) < SMALL_DELAY_MS);
140              Thread.interrupted();
141          }
142  
# Line 156 | Line 172 | public class ForkJoinTask8Test extends J
172          Thread.interrupted();
173  
174          {
175 <            long t0 = System.nanoTime();
175 >            long startTime = System.nanoTime();
176              a.quietlyJoin();        // should be no-op
177 <            assertTrue(millisElapsedSince(t0) < SMALL_DELAY_MS);
177 >            assertTrue(millisElapsedSince(startTime) < SMALL_DELAY_MS);
178          }
179  
180          try {
# Line 176 | Line 192 | public class ForkJoinTask8Test extends J
192          } catch (Throwable fail) { threadUnexpectedException(fail); }
193      }
194  
179
195      public static final class FJException extends RuntimeException {
196          FJException() { super(); }
197      }
198  
199      abstract static class BinaryAsyncAction extends ForkJoinTask<Void> {
200  
201 <        private BinaryAsyncAction parent;
201 >        private volatile BinaryAsyncAction parent;
202  
203 <        private BinaryAsyncAction sibling;
203 >        private volatile BinaryAsyncAction sibling;
204  
205          protected BinaryAsyncAction() {
206              setForkJoinTaskTag(INITIAL_STATE);
# Line 276 | Line 291 | public class ForkJoinTask8Test extends J
291  
292      }
293  
294 <    static final class AsyncFib extends BinaryAsyncAction {
294 >    final class AsyncFib extends BinaryAsyncAction {
295          int number;
296 <        public AsyncFib(int n) {
297 <            this.number = n;
296 >        int expectedResult;
297 >        public AsyncFib(int number) {
298 >            this.number = number;
299 >            this.expectedResult = fib[number];
300          }
301  
302          public final boolean exec() {
# Line 300 | Line 317 | public class ForkJoinTask8Test extends J
317              }
318              catch (Throwable ex) {
319                  compareAndSetForkJoinTaskTag(INITIAL_STATE, EXCEPTION_STATE);
320 +                throw new Error(ex);
321              }
322              return false;
323          }
# Line 308 | Line 326 | public class ForkJoinTask8Test extends J
326              number = ((AsyncFib)x).number + ((AsyncFib)y).number;
327              super.onComplete(x, y);
328          }
329 +
330 +        public void checkCompletedNormally() {
331 +            assertEquals(expectedResult, number);
332 +            ForkJoinTask8Test.this.checkCompletedNormally(this);
333 +        }
334      }
335  
336      static final class FailingAsyncFib extends BinaryAsyncAction {
# Line 344 | Line 367 | public class ForkJoinTask8Test extends J
367       * completed tasks; getRawResult returns null.
368       */
369      public void testInvoke() {
370 +        testInvoke(mainPool());
371 +    }
372 +    public void testInvoke_Singleton() {
373 +        testInvoke(singletonPool());
374 +    }
375 +    public void testInvoke(ForkJoinPool pool) {
376          RecursiveAction a = new CheckedRecursiveAction() {
377              protected void realCompute() {
378                  AsyncFib f = new AsyncFib(8);
379                  assertNull(f.invoke());
380 <                assertEquals(21, f.number);
352 <                checkCompletedNormally(f);
380 >                f.checkCompletedNormally();
381              }};
382 <        testInvokeOnPool(mainPool(), a);
382 >        testInvokeOnPool(pool, a);
383      }
384  
385      /**
# Line 360 | Line 388 | public class ForkJoinTask8Test extends J
388       * completed tasks
389       */
390      public void testQuietlyInvoke() {
391 +        testQuietlyInvoke(mainPool());
392 +    }
393 +    public void testQuietlyInvoke_Singleton() {
394 +        testQuietlyInvoke(singletonPool());
395 +    }
396 +    public void testQuietlyInvoke(ForkJoinPool pool) {
397          RecursiveAction a = new CheckedRecursiveAction() {
398              protected void realCompute() {
399                  AsyncFib f = new AsyncFib(8);
400                  f.quietlyInvoke();
401 <                assertEquals(21, f.number);
368 <                checkCompletedNormally(f);
401 >                f.checkCompletedNormally();
402              }};
403 <        testInvokeOnPool(mainPool(), a);
403 >        testInvokeOnPool(pool, a);
404      }
405  
406      /**
407       * join of a forked task returns when task completes
408       */
409      public void testForkJoin() {
410 +        testForkJoin(mainPool());
411 +    }
412 +    public void testForkJoin_Singleton() {
413 +        testForkJoin(singletonPool());
414 +    }
415 +    public void testForkJoin(ForkJoinPool pool) {
416          RecursiveAction a = new CheckedRecursiveAction() {
417              protected void realCompute() {
418                  AsyncFib f = new AsyncFib(8);
419                  assertSame(f, f.fork());
420                  assertNull(f.join());
421 <                assertEquals(21, f.number);
383 <                checkCompletedNormally(f);
421 >                f.checkCompletedNormally();
422              }};
423 <        testInvokeOnPool(mainPool(), a);
423 >        testInvokeOnPool(pool, a);
424      }
425  
426      /**
427       * get of a forked task returns when task completes
428       */
429      public void testForkGet() {
430 +        testForkGet(mainPool());
431 +    }
432 +    public void testForkGet_Singleton() {
433 +        testForkGet(singletonPool());
434 +    }
435 +    public void testForkGet(ForkJoinPool pool) {
436          RecursiveAction a = new CheckedRecursiveAction() {
437              protected void realCompute() throws Exception {
438                  AsyncFib f = new AsyncFib(8);
439                  assertSame(f, f.fork());
440                  assertNull(f.get());
441 <                assertEquals(21, f.number);
398 <                checkCompletedNormally(f);
441 >                f.checkCompletedNormally();
442              }};
443 <        testInvokeOnPool(mainPool(), a);
443 >        testInvokeOnPool(pool, a);
444      }
445  
446      /**
447       * timed get of a forked task returns when task completes
448       */
449      public void testForkTimedGet() {
450 +        testForkTimedGet(mainPool());
451 +    }
452 +    public void testForkTimedGet_Singleton() {
453 +        testForkTimedGet(singletonPool());
454 +    }
455 +    public void testForkTimedGet(ForkJoinPool pool) {
456          RecursiveAction a = new CheckedRecursiveAction() {
457              protected void realCompute() throws Exception {
458                  AsyncFib f = new AsyncFib(8);
459                  assertSame(f, f.fork());
460                  assertNull(f.get(LONG_DELAY_MS, MILLISECONDS));
461 <                assertEquals(21, f.number);
413 <                checkCompletedNormally(f);
461 >                f.checkCompletedNormally();
462              }};
463 <        testInvokeOnPool(mainPool(), a);
463 >        testInvokeOnPool(pool, a);
464      }
465  
466      /**
467 <     * timed get with null time unit throws NPE
467 >     * timed get with null time unit throws NullPointerException
468       */
469 <    public void testForkTimedGetNPE() {
469 >    public void testForkTimedGetNullTimeUnit() {
470 >        testForkTimedGetNullTimeUnit(mainPool());
471 >    }
472 >    public void testForkTimedGetNullTimeUnit_Singleton() {
473 >        testForkTimedGet(singletonPool());
474 >    }
475 >    public void testForkTimedGetNullTimeUnit(ForkJoinPool pool) {
476          RecursiveAction a = new CheckedRecursiveAction() {
477              protected void realCompute() throws Exception {
478                  AsyncFib f = new AsyncFib(8);
# Line 428 | Line 482 | public class ForkJoinTask8Test extends J
482                      shouldThrow();
483                  } catch (NullPointerException success) {}
484              }};
485 <        testInvokeOnPool(mainPool(), a);
485 >        testInvokeOnPool(pool, a);
486      }
487  
488      /**
489       * quietlyJoin of a forked task returns when task completes
490       */
491      public void testForkQuietlyJoin() {
492 +        testForkQuietlyJoin(mainPool());
493 +    }
494 +    public void testForkQuietlyJoin_Singleton() {
495 +        testForkQuietlyJoin(singletonPool());
496 +    }
497 +    public void testForkQuietlyJoin(ForkJoinPool pool) {
498          RecursiveAction a = new CheckedRecursiveAction() {
499              protected void realCompute() {
500                  AsyncFib f = new AsyncFib(8);
501                  assertSame(f, f.fork());
502                  f.quietlyJoin();
503 <                assertEquals(21, f.number);
444 <                checkCompletedNormally(f);
503 >                f.checkCompletedNormally();
504              }};
505 <        testInvokeOnPool(mainPool(), a);
505 >        testInvokeOnPool(pool, a);
506      }
507  
508      /**
# Line 451 | Line 510 | public class ForkJoinTask8Test extends J
510       * getQueuedTaskCount returns 0 when quiescent
511       */
512      public void testForkHelpQuiesce() {
513 +        testForkHelpQuiesce(mainPool());
514 +    }
515 +    public void testForkHelpQuiesce_Singleton() {
516 +        testForkHelpQuiesce(singletonPool());
517 +    }
518 +    public void testForkHelpQuiesce(ForkJoinPool pool) {
519          RecursiveAction a = new CheckedRecursiveAction() {
520              protected void realCompute() {
521                  AsyncFib f = new AsyncFib(8);
522                  assertSame(f, f.fork());
523                  helpQuiesce();
459                assertEquals(21, f.number);
524                  assertEquals(0, getQueuedTaskCount());
525 <                checkCompletedNormally(f);
525 >                f.checkCompletedNormally();
526              }};
527 <        testInvokeOnPool(mainPool(), a);
527 >        testInvokeOnPool(pool, a);
528      }
529  
530      /**
531       * invoke task throws exception when task completes abnormally
532       */
533      public void testAbnormalInvoke() {
534 +        testAbnormalInvoke(mainPool());
535 +    }
536 +    public void testAbnormalInvoke_Singleton() {
537 +        testAbnormalInvoke(singletonPool());
538 +    }
539 +    public void testAbnormalInvoke(ForkJoinPool pool) {
540          RecursiveAction a = new CheckedRecursiveAction() {
541              protected void realCompute() {
542                  FailingAsyncFib f = new FailingAsyncFib(8);
# Line 477 | Line 547 | public class ForkJoinTask8Test extends J
547                      checkCompletedAbnormally(f, success);
548                  }
549              }};
550 <        testInvokeOnPool(mainPool(), a);
550 >        testInvokeOnPool(pool, a);
551      }
552  
553      /**
554       * quietlyInvoke task returns when task completes abnormally
555       */
556      public void testAbnormalQuietlyInvoke() {
557 +        testAbnormalQuietlyInvoke(mainPool());
558 +    }
559 +    public void testAbnormalQuietlyInvoke_Singleton() {
560 +        testAbnormalQuietlyInvoke(singletonPool());
561 +    }
562 +    public void testAbnormalQuietlyInvoke(ForkJoinPool pool) {
563          RecursiveAction a = new CheckedRecursiveAction() {
564              protected void realCompute() {
565                  FailingAsyncFib f = new FailingAsyncFib(8);
# Line 491 | Line 567 | public class ForkJoinTask8Test extends J
567                  assertTrue(f.getException() instanceof FJException);
568                  checkCompletedAbnormally(f, f.getException());
569              }};
570 <        testInvokeOnPool(mainPool(), a);
570 >        testInvokeOnPool(pool, a);
571      }
572  
573      /**
574       * join of a forked task throws exception when task completes abnormally
575       */
576      public void testAbnormalForkJoin() {
577 +        testAbnormalForkJoin(mainPool());
578 +    }
579 +    public void testAbnormalForkJoin_Singleton() {
580 +        testAbnormalForkJoin(singletonPool());
581 +    }
582 +    public void testAbnormalForkJoin(ForkJoinPool pool) {
583          RecursiveAction a = new CheckedRecursiveAction() {
584              protected void realCompute() {
585                  FailingAsyncFib f = new FailingAsyncFib(8);
# Line 509 | Line 591 | public class ForkJoinTask8Test extends J
591                      checkCompletedAbnormally(f, success);
592                  }
593              }};
594 <        testInvokeOnPool(mainPool(), a);
594 >        testInvokeOnPool(pool, a);
595      }
596  
597      /**
598       * get of a forked task throws exception when task completes abnormally
599       */
600      public void testAbnormalForkGet() {
601 +        testAbnormalForkGet(mainPool());
602 +    }
603 +    public void testAbnormalForkGet_Singleton() {
604 +        testAbnormalForkJoin(singletonPool());
605 +    }
606 +    public void testAbnormalForkGet(ForkJoinPool pool) {
607          RecursiveAction a = new CheckedRecursiveAction() {
608              protected void realCompute() throws Exception {
609                  FailingAsyncFib f = new FailingAsyncFib(8);
# Line 529 | Line 617 | public class ForkJoinTask8Test extends J
617                      checkCompletedAbnormally(f, cause);
618                  }
619              }};
620 <        testInvokeOnPool(mainPool(), a);
620 >        testInvokeOnPool(pool, a);
621      }
622  
623      /**
624       * timed get of a forked task throws exception when task completes abnormally
625       */
626      public void testAbnormalForkTimedGet() {
627 +        testAbnormalForkTimedGet(mainPool());
628 +    }
629 +    public void testAbnormalForkTimedGet_Singleton() {
630 +        testAbnormalForkTimedGet(singletonPool());
631 +    }
632 +    public void testAbnormalForkTimedGet(ForkJoinPool pool) {
633          RecursiveAction a = new CheckedRecursiveAction() {
634              protected void realCompute() throws Exception {
635                  FailingAsyncFib f = new FailingAsyncFib(8);
# Line 549 | Line 643 | public class ForkJoinTask8Test extends J
643                      checkCompletedAbnormally(f, cause);
644                  }
645              }};
646 <        testInvokeOnPool(mainPool(), a);
646 >        testInvokeOnPool(pool, a);
647      }
648  
649      /**
650       * quietlyJoin of a forked task returns when task completes abnormally
651       */
652      public void testAbnormalForkQuietlyJoin() {
653 +        testAbnormalForkQuietlyJoin(mainPool());
654 +    }
655 +    public void testAbnormalForkQuietlyJoin_Singleton() {
656 +        testAbnormalForkQuietlyJoin(singletonPool());
657 +    }
658 +    public void testAbnormalForkQuietlyJoin(ForkJoinPool pool) {
659          RecursiveAction a = new CheckedRecursiveAction() {
660              protected void realCompute() {
661                  FailingAsyncFib f = new FailingAsyncFib(8);
# Line 564 | Line 664 | public class ForkJoinTask8Test extends J
664                  assertTrue(f.getException() instanceof FJException);
665                  checkCompletedAbnormally(f, f.getException());
666              }};
667 <        testInvokeOnPool(mainPool(), a);
667 >        testInvokeOnPool(pool, a);
668      }
669  
670      /**
671       * getPool of executing task returns its pool
672       */
673      public void testGetPool() {
674 <        final ForkJoinPool mainPool = mainPool();
674 >        testGetPool(mainPool());
675 >    }
676 >    public void testGetPool_Singleton() {
677 >        testGetPool(singletonPool());
678 >    }
679 >    public void testGetPool(ForkJoinPool pool) {
680          RecursiveAction a = new CheckedRecursiveAction() {
681              protected void realCompute() {
682 <                assertSame(mainPool, getPool());
682 >                assertSame(pool, getPool());
683              }};
684 <        testInvokeOnPool(mainPool, a);
684 >        testInvokeOnPool(pool, a);
685      }
686  
687      /**
# Line 594 | Line 699 | public class ForkJoinTask8Test extends J
699       * inForkJoinPool of executing task returns true
700       */
701      public void testInForkJoinPool() {
702 +        testInForkJoinPool(mainPool());
703 +    }
704 +    public void testInForkJoinPool_Singleton() {
705 +        testInForkJoinPool(singletonPool());
706 +    }
707 +    public void testInForkJoinPool(ForkJoinPool pool) {
708          RecursiveAction a = new CheckedRecursiveAction() {
709              protected void realCompute() {
710                  assertTrue(inForkJoinPool());
711              }};
712 <        testInvokeOnPool(mainPool(), a);
712 >        testInvokeOnPool(pool, a);
713      }
714  
715      /**
# Line 628 | Line 739 | public class ForkJoinTask8Test extends J
739       * invoke task throws exception after invoking completeExceptionally
740       */
741      public void testCompleteExceptionally() {
742 +        testCompleteExceptionally(mainPool());
743 +    }
744 +    public void testCompleteExceptionally_Singleton() {
745 +        testCompleteExceptionally(singletonPool());
746 +    }
747 +    public void testCompleteExceptionally(ForkJoinPool pool) {
748          RecursiveAction a = new CheckedRecursiveAction() {
749              protected void realCompute() {
750                  AsyncFib f = new AsyncFib(8);
# Line 639 | Line 756 | public class ForkJoinTask8Test extends J
756                      checkCompletedAbnormally(f, success);
757                  }
758              }};
759 <        testInvokeOnPool(mainPool(), a);
759 >        testInvokeOnPool(pool, a);
760      }
761  
762      /**
763 <     * invokeAll(t1, t2) invokes all task arguments
763 >     * invokeAll(tasks) with 1 argument invokes task
764       */
765 <    public void testInvokeAll2() {
765 >    public void testInvokeAll1() {
766 >        testInvokeAll1(mainPool());
767 >    }
768 >    public void testInvokeAll1_Singleton() {
769 >        testInvokeAll1(singletonPool());
770 >    }
771 >    public void testInvokeAll1(ForkJoinPool pool) {
772          RecursiveAction a = new CheckedRecursiveAction() {
773              protected void realCompute() {
774                  AsyncFib f = new AsyncFib(8);
775 <                AsyncFib g = new AsyncFib(9);
776 <                invokeAll(f, g);
654 <                assertEquals(21, f.number);
655 <                assertEquals(34, g.number);
656 <                checkCompletedNormally(f);
657 <                checkCompletedNormally(g);
775 >                invokeAll(f);
776 >                f.checkCompletedNormally();
777              }};
778 <        testInvokeOnPool(mainPool(), a);
778 >        testInvokeOnPool(pool, a);
779      }
780  
781      /**
782 <     * invokeAll(tasks) with 1 argument invokes task
782 >     * invokeAll(t1, t2) invokes all task arguments
783       */
784 <    public void testInvokeAll1() {
784 >    public void testInvokeAll2() {
785 >        testInvokeAll2(mainPool());
786 >    }
787 >    public void testInvokeAll2_Singleton() {
788 >        testInvokeAll2(singletonPool());
789 >    }
790 >    public void testInvokeAll2(ForkJoinPool pool) {
791          RecursiveAction a = new CheckedRecursiveAction() {
792              protected void realCompute() {
793 <                AsyncFib f = new AsyncFib(8);
794 <                invokeAll(f);
795 <                checkCompletedNormally(f);
796 <                assertEquals(21, f.number);
793 >                AsyncFib[] tasks = {
794 >                    new AsyncFib(8),
795 >                    new AsyncFib(9),
796 >                };
797 >                invokeAll(tasks[0], tasks[1]);
798 >                for (AsyncFib task : tasks) assertTrue(task.isDone());
799 >                for (AsyncFib task : tasks) task.checkCompletedNormally();
800              }};
801 <        testInvokeOnPool(mainPool(), a);
801 >        testInvokeOnPool(pool, a);
802      }
803  
804      /**
805       * invokeAll(tasks) with > 2 argument invokes tasks
806       */
807      public void testInvokeAll3() {
808 +        testInvokeAll3(mainPool());
809 +    }
810 +    public void testInvokeAll3_Singleton() {
811 +        testInvokeAll3(singletonPool());
812 +    }
813 +    public void testInvokeAll3(ForkJoinPool pool) {
814          RecursiveAction a = new CheckedRecursiveAction() {
815              protected void realCompute() {
816 <                AsyncFib f = new AsyncFib(8);
817 <                AsyncFib g = new AsyncFib(9);
818 <                AsyncFib h = new AsyncFib(7);
819 <                invokeAll(f, g, h);
820 <                assertEquals(21, f.number);
821 <                assertEquals(34, g.number);
822 <                assertEquals(13, h.number);
823 <                checkCompletedNormally(f);
690 <                checkCompletedNormally(g);
691 <                checkCompletedNormally(h);
816 >                AsyncFib[] tasks = {
817 >                    new AsyncFib(8),
818 >                    new AsyncFib(9),
819 >                    new AsyncFib(7),
820 >                };
821 >                invokeAll(tasks[0], tasks[1], tasks[2]);
822 >                for (AsyncFib task : tasks) assertTrue(task.isDone());
823 >                for (AsyncFib task : tasks) task.checkCompletedNormally();
824              }};
825 <        testInvokeOnPool(mainPool(), a);
825 >        testInvokeOnPool(pool, a);
826      }
827  
828      /**
829       * invokeAll(collection) invokes all tasks in the collection
830       */
831      public void testInvokeAllCollection() {
832 +        testInvokeAllCollection(mainPool());
833 +    }
834 +    public void testInvokeAllCollection_Singleton() {
835 +        testInvokeAllCollection(singletonPool());
836 +    }
837 +    public void testInvokeAllCollection(ForkJoinPool pool) {
838          RecursiveAction a = new CheckedRecursiveAction() {
839              protected void realCompute() {
840 <                AsyncFib f = new AsyncFib(8);
841 <                AsyncFib g = new AsyncFib(9);
842 <                AsyncFib h = new AsyncFib(7);
843 <                HashSet set = new HashSet();
844 <                set.add(f);
845 <                set.add(g);
846 <                set.add(h);
847 <                invokeAll(set);
710 <                assertEquals(21, f.number);
711 <                assertEquals(34, g.number);
712 <                assertEquals(13, h.number);
713 <                checkCompletedNormally(f);
714 <                checkCompletedNormally(g);
715 <                checkCompletedNormally(h);
840 >                AsyncFib[] tasks = {
841 >                    new AsyncFib(8),
842 >                    new AsyncFib(9),
843 >                    new AsyncFib(7),
844 >                };
845 >                invokeAll(Arrays.asList(tasks));
846 >                for (AsyncFib task : tasks) assertTrue(task.isDone());
847 >                for (AsyncFib task : tasks) task.checkCompletedNormally();
848              }};
849 <        testInvokeOnPool(mainPool(), a);
849 >        testInvokeOnPool(pool, a);
850      }
851  
852      /**
853 <     * invokeAll(tasks) with any null task throws NPE
853 >     * invokeAll(tasks) with any null task throws NullPointerException
854       */
855 <    public void testInvokeAllNPE() {
855 >    public void testInvokeAllNullTask() {
856 >        testInvokeAllNullTask(mainPool());
857 >    }
858 >    public void testInvokeAllNullTask_Singleton() {
859 >        testInvokeAllNullTask(singletonPool());
860 >    }
861 >    public void testInvokeAllNullTask(ForkJoinPool pool) {
862          RecursiveAction a = new CheckedRecursiveAction() {
863              protected void realCompute() {
864 <                AsyncFib f = new AsyncFib(8);
865 <                AsyncFib g = new AsyncFib(9);
866 <                AsyncFib h = null;
867 <                try {
868 <                    invokeAll(f, g, h);
869 <                    shouldThrow();
870 <                } catch (NullPointerException success) {}
864 >                AsyncFib nul = null;
865 >                Runnable[] throwingActions = {
866 >                    () -> invokeAll(nul),
867 >                    () -> invokeAll(nul, nul),
868 >                    () -> invokeAll(new AsyncFib(8), new AsyncFib(9), nul),
869 >                    () -> invokeAll(new AsyncFib(8), nul, new AsyncFib(9)),
870 >                    () -> invokeAll(nul, new AsyncFib(8), new AsyncFib(9)),
871 >                };
872 >                assertThrows(NullPointerException.class, throwingActions);
873              }};
874 <        testInvokeOnPool(mainPool(), a);
874 >        testInvokeOnPool(pool, a);
875      }
876  
877      /**
878 <     * invokeAll(t1, t2) throw exception if any task does
878 >     * invokeAll(tasks) with 1 argument throws exception if task does
879       */
880 <    public void testAbnormalInvokeAll2() {
880 >    public void testAbnormalInvokeAll1() {
881 >        testAbnormalInvokeAll1(mainPool());
882 >    }
883 >    public void testAbnormalInvokeAll1_Singleton() {
884 >        testAbnormalInvokeAll1(singletonPool());
885 >    }
886 >    public void testAbnormalInvokeAll1(ForkJoinPool pool) {
887          RecursiveAction a = new CheckedRecursiveAction() {
888              protected void realCompute() {
743                AsyncFib f = new AsyncFib(8);
889                  FailingAsyncFib g = new FailingAsyncFib(9);
890                  try {
891 <                    invokeAll(f, g);
891 >                    invokeAll(g);
892                      shouldThrow();
893                  } catch (FJException success) {
894                      checkCompletedAbnormally(g, success);
895                  }
896              }};
897 <        testInvokeOnPool(mainPool(), a);
897 >        testInvokeOnPool(pool, a);
898      }
899  
900      /**
901 <     * invokeAll(tasks) with 1 argument throws exception if task does
901 >     * invokeAll(t1, t2) throw exception if any task does
902       */
903 <    public void testAbnormalInvokeAll1() {
903 >    public void testAbnormalInvokeAll2() {
904 >        testAbnormalInvokeAll2(mainPool());
905 >    }
906 >    public void testAbnormalInvokeAll2_Singleton() {
907 >        testAbnormalInvokeAll2(singletonPool());
908 >    }
909 >    public void testAbnormalInvokeAll2(ForkJoinPool pool) {
910          RecursiveAction a = new CheckedRecursiveAction() {
911              protected void realCompute() {
912 +                AsyncFib f = new AsyncFib(8);
913                  FailingAsyncFib g = new FailingAsyncFib(9);
914 +                ForkJoinTask[] tasks = { f, g };
915 +                Collections.shuffle(Arrays.asList(tasks));
916                  try {
917 <                    invokeAll(g);
917 >                    invokeAll(tasks[0], tasks[1]);
918                      shouldThrow();
919                  } catch (FJException success) {
920                      checkCompletedAbnormally(g, success);
921                  }
922              }};
923 <        testInvokeOnPool(mainPool(), a);
923 >        testInvokeOnPool(pool, a);
924      }
925  
926      /**
927       * invokeAll(tasks) with > 2 argument throws exception if any task does
928       */
929      public void testAbnormalInvokeAll3() {
930 +        testAbnormalInvokeAll3(mainPool());
931 +    }
932 +    public void testAbnormalInvokeAll3_Singleton() {
933 +        testAbnormalInvokeAll3(singletonPool());
934 +    }
935 +    public void testAbnormalInvokeAll3(ForkJoinPool pool) {
936          RecursiveAction a = new CheckedRecursiveAction() {
937              protected void realCompute() {
938                  AsyncFib f = new AsyncFib(8);
939                  FailingAsyncFib g = new FailingAsyncFib(9);
940                  AsyncFib h = new AsyncFib(7);
941 +                ForkJoinTask[] tasks = { f, g, h };
942 +                Collections.shuffle(Arrays.asList(tasks));
943                  try {
944 <                    invokeAll(f, g, h);
944 >                    invokeAll(tasks[0], tasks[1], tasks[2]);
945                      shouldThrow();
946                  } catch (FJException success) {
947                      checkCompletedAbnormally(g, success);
948                  }
949              }};
950 <        testInvokeOnPool(mainPool(), a);
950 >        testInvokeOnPool(pool, a);
951      }
952  
953      /**
954       * invokeAll(collection) throws exception if any task does
955       */
956      public void testAbnormalInvokeAllCollection() {
957 +        testAbnormalInvokeAllCollection(mainPool());
958 +    }
959 +    public void testAbnormalInvokeAllCollection_Singleton() {
960 +        testAbnormalInvokeAllCollection(singletonPool());
961 +    }
962 +    public void testAbnormalInvokeAllCollection(ForkJoinPool pool) {
963          RecursiveAction a = new CheckedRecursiveAction() {
964              protected void realCompute() {
965                  FailingAsyncFib f = new FailingAsyncFib(8);
966                  AsyncFib g = new AsyncFib(9);
967                  AsyncFib h = new AsyncFib(7);
968 <                HashSet set = new HashSet();
969 <                set.add(f);
802 <                set.add(g);
803 <                set.add(h);
968 >                ForkJoinTask[] tasks = { f, g, h };
969 >                Collections.shuffle(Arrays.asList(tasks));
970                  try {
971 <                    invokeAll(set);
971 >                    invokeAll(Arrays.asList(tasks));
972                      shouldThrow();
973                  } catch (FJException success) {
974                      checkCompletedAbnormally(f, success);
975                  }
976              }};
977 <        testInvokeOnPool(mainPool(), a);
977 >        testInvokeOnPool(pool, a);
978      }
979  
980      /**
# Line 825 | Line 991 | public class ForkJoinTask8Test extends J
991                  assertTrue(f.tryUnfork());
992                  helpQuiesce();
993                  checkNotDone(f);
994 <                checkCompletedNormally(g);
994 >                g.checkCompletedNormally();
995              }};
996          testInvokeOnPool(singletonPool(), a);
997      }
# Line 846 | Line 1012 | public class ForkJoinTask8Test extends J
1012                  assertTrue(getSurplusQueuedTaskCount() > 0);
1013                  helpQuiesce();
1014                  assertEquals(0, getSurplusQueuedTaskCount());
1015 <                checkCompletedNormally(f);
1016 <                checkCompletedNormally(g);
1017 <                checkCompletedNormally(h);
1015 >                f.checkCompletedNormally();
1016 >                g.checkCompletedNormally();
1017 >                h.checkCompletedNormally();
1018              }};
1019          testInvokeOnPool(singletonPool(), a);
1020      }
# Line 865 | Line 1031 | public class ForkJoinTask8Test extends J
1031                  assertSame(f, f.fork());
1032                  assertSame(f, peekNextLocalTask());
1033                  assertNull(f.join());
1034 <                checkCompletedNormally(f);
1034 >                f.checkCompletedNormally();
1035                  helpQuiesce();
1036 <                checkCompletedNormally(g);
1036 >                g.checkCompletedNormally();
1037              }};
1038          testInvokeOnPool(singletonPool(), a);
1039      }
# Line 886 | Line 1052 | public class ForkJoinTask8Test extends J
1052                  assertSame(f, pollNextLocalTask());
1053                  helpQuiesce();
1054                  checkNotDone(f);
1055 <                assertEquals(34, g.number);
890 <                checkCompletedNormally(g);
1055 >                g.checkCompletedNormally();
1056              }};
1057          testInvokeOnPool(singletonPool(), a);
1058      }
# Line 905 | Line 1070 | public class ForkJoinTask8Test extends J
1070                  assertSame(f, pollTask());
1071                  helpQuiesce();
1072                  checkNotDone(f);
1073 <                checkCompletedNormally(g);
1073 >                g.checkCompletedNormally();
1074              }};
1075          testInvokeOnPool(singletonPool(), a);
1076      }
# Line 923 | Line 1088 | public class ForkJoinTask8Test extends J
1088                  assertSame(g, peekNextLocalTask());
1089                  assertNull(f.join());
1090                  helpQuiesce();
1091 <                checkCompletedNormally(f);
1092 <                assertEquals(34, g.number);
928 <                checkCompletedNormally(g);
1091 >                f.checkCompletedNormally();
1092 >                g.checkCompletedNormally();
1093              }};
1094          testInvokeOnPool(asyncSingletonPool(), a);
1095      }
# Line 943 | Line 1107 | public class ForkJoinTask8Test extends J
1107                  assertSame(f, f.fork());
1108                  assertSame(g, pollNextLocalTask());
1109                  helpQuiesce();
1110 <                assertEquals(21, f.number);
947 <                checkCompletedNormally(f);
1110 >                f.checkCompletedNormally();
1111                  checkNotDone(g);
1112              }};
1113          testInvokeOnPool(asyncSingletonPool(), a);
# Line 963 | Line 1126 | public class ForkJoinTask8Test extends J
1126                  assertSame(f, f.fork());
1127                  assertSame(g, pollTask());
1128                  helpQuiesce();
1129 <                assertEquals(21, f.number);
967 <                checkCompletedNormally(f);
1129 >                f.checkCompletedNormally();
1130                  checkNotDone(g);
1131              }};
1132          testInvokeOnPool(asyncSingletonPool(), a);
1133      }
1134  
973    // versions for singleton pools
974
975    /**
976     * invoke returns when task completes normally.
977     * isCompletedAbnormally and isCancelled return false for normally
978     * completed tasks; getRawResult returns null.
979     */
980    public void testInvokeSingleton() {
981        RecursiveAction a = new CheckedRecursiveAction() {
982            protected void realCompute() {
983                AsyncFib f = new AsyncFib(8);
984                assertNull(f.invoke());
985                assertEquals(21, f.number);
986                checkCompletedNormally(f);
987            }};
988        testInvokeOnPool(singletonPool(), a);
989    }
990
991    /**
992     * quietlyInvoke task returns when task completes normally.
993     * isCompletedAbnormally and isCancelled return false for normally
994     * completed tasks
995     */
996    public void testQuietlyInvokeSingleton() {
997        RecursiveAction a = new CheckedRecursiveAction() {
998            protected void realCompute() {
999                AsyncFib f = new AsyncFib(8);
1000                f.quietlyInvoke();
1001                assertEquals(21, f.number);
1002                checkCompletedNormally(f);
1003            }};
1004        testInvokeOnPool(singletonPool(), a);
1005    }
1006
1007    /**
1008     * join of a forked task returns when task completes
1009     */
1010    public void testForkJoinSingleton() {
1011        RecursiveAction a = new CheckedRecursiveAction() {
1012            protected void realCompute() {
1013                AsyncFib f = new AsyncFib(8);
1014                assertSame(f, f.fork());
1015                assertNull(f.join());
1016                assertEquals(21, f.number);
1017                checkCompletedNormally(f);
1018            }};
1019        testInvokeOnPool(singletonPool(), a);
1020    }
1021
1022    /**
1023     * get of a forked task returns when task completes
1024     */
1025    public void testForkGetSingleton() {
1026        RecursiveAction a = new CheckedRecursiveAction() {
1027            protected void realCompute() throws Exception {
1028                AsyncFib f = new AsyncFib(8);
1029                assertSame(f, f.fork());
1030                assertNull(f.get());
1031                assertEquals(21, f.number);
1032                checkCompletedNormally(f);
1033            }};
1034        testInvokeOnPool(singletonPool(), a);
1035    }
1036
1037    /**
1038     * timed get of a forked task returns when task completes
1039     */
1040    public void testForkTimedGetSingleton() {
1041        RecursiveAction a = new CheckedRecursiveAction() {
1042            protected void realCompute() throws Exception {
1043                AsyncFib f = new AsyncFib(8);
1044                assertSame(f, f.fork());
1045                assertNull(f.get(LONG_DELAY_MS, MILLISECONDS));
1046                assertEquals(21, f.number);
1047                checkCompletedNormally(f);
1048            }};
1049        testInvokeOnPool(singletonPool(), a);
1050    }
1051
1052    /**
1053     * timed get with null time unit throws NPE
1054     */
1055    public void testForkTimedGetNPESingleton() {
1056        RecursiveAction a = new CheckedRecursiveAction() {
1057            protected void realCompute() throws Exception {
1058                AsyncFib f = new AsyncFib(8);
1059                assertSame(f, f.fork());
1060                try {
1061                    f.get(5L, null);
1062                    shouldThrow();
1063                } catch (NullPointerException success) {}
1064            }};
1065        testInvokeOnPool(singletonPool(), a);
1066    }
1067
1068    /**
1069     * quietlyJoin of a forked task returns when task completes
1070     */
1071    public void testForkQuietlyJoinSingleton() {
1072        RecursiveAction a = new CheckedRecursiveAction() {
1073            protected void realCompute() {
1074                AsyncFib f = new AsyncFib(8);
1075                assertSame(f, f.fork());
1076                f.quietlyJoin();
1077                assertEquals(21, f.number);
1078                checkCompletedNormally(f);
1079            }};
1080        testInvokeOnPool(singletonPool(), a);
1081    }
1082
1083    /**
1084     * helpQuiesce returns when tasks are complete.
1085     * getQueuedTaskCount returns 0 when quiescent
1086     */
1087    public void testForkHelpQuiesceSingleton() {
1088        RecursiveAction a = new CheckedRecursiveAction() {
1089            protected void realCompute() {
1090                AsyncFib f = new AsyncFib(8);
1091                assertSame(f, f.fork());
1092                helpQuiesce();
1093                assertEquals(0, getQueuedTaskCount());
1094                assertEquals(21, f.number);
1095                checkCompletedNormally(f);
1096            }};
1097        testInvokeOnPool(singletonPool(), a);
1098    }
1099
1100    /**
1101     * invoke task throws exception when task completes abnormally
1102     */
1103    public void testAbnormalInvokeSingleton() {
1104        RecursiveAction a = new CheckedRecursiveAction() {
1105            protected void realCompute() {
1106                FailingAsyncFib f = new FailingAsyncFib(8);
1107                try {
1108                    f.invoke();
1109                    shouldThrow();
1110                } catch (FJException success) {
1111                    checkCompletedAbnormally(f, success);
1112                }
1113            }};
1114        testInvokeOnPool(singletonPool(), a);
1115    }
1116
1117    /**
1118     * quietlyInvoke task returns when task completes abnormally
1119     */
1120    public void testAbnormalQuietlyInvokeSingleton() {
1121        RecursiveAction a = new CheckedRecursiveAction() {
1122            protected void realCompute() {
1123                FailingAsyncFib f = new FailingAsyncFib(8);
1124                f.quietlyInvoke();
1125                assertTrue(f.getException() instanceof FJException);
1126                checkCompletedAbnormally(f, f.getException());
1127            }};
1128        testInvokeOnPool(singletonPool(), a);
1129    }
1130
1131    /**
1132     * join of a forked task throws exception when task completes abnormally
1133     */
1134    public void testAbnormalForkJoinSingleton() {
1135        RecursiveAction a = new CheckedRecursiveAction() {
1136            protected void realCompute() {
1137                FailingAsyncFib f = new FailingAsyncFib(8);
1138                assertSame(f, f.fork());
1139                try {
1140                    f.join();
1141                    shouldThrow();
1142                } catch (FJException success) {
1143                    checkCompletedAbnormally(f, success);
1144                }
1145            }};
1146        testInvokeOnPool(singletonPool(), a);
1147    }
1148
1149    /**
1150     * get of a forked task throws exception when task completes abnormally
1151     */
1152    public void testAbnormalForkGetSingleton() {
1153        RecursiveAction a = new CheckedRecursiveAction() {
1154            protected void realCompute() throws Exception {
1155                FailingAsyncFib f = new FailingAsyncFib(8);
1156                assertSame(f, f.fork());
1157                try {
1158                    f.get();
1159                    shouldThrow();
1160                } catch (ExecutionException success) {
1161                    Throwable cause = success.getCause();
1162                    assertTrue(cause instanceof FJException);
1163                    checkCompletedAbnormally(f, cause);
1164                }
1165            }};
1166        testInvokeOnPool(singletonPool(), a);
1167    }
1168
1169    /**
1170     * timed get of a forked task throws exception when task completes abnormally
1171     */
1172    public void testAbnormalForkTimedGetSingleton() {
1173        RecursiveAction a = new CheckedRecursiveAction() {
1174            protected void realCompute() throws Exception {
1175                FailingAsyncFib f = new FailingAsyncFib(8);
1176                assertSame(f, f.fork());
1177                try {
1178                    f.get(LONG_DELAY_MS, MILLISECONDS);
1179                    shouldThrow();
1180                } catch (ExecutionException success) {
1181                    Throwable cause = success.getCause();
1182                    assertTrue(cause instanceof FJException);
1183                    checkCompletedAbnormally(f, cause);
1184                }
1185            }};
1186        testInvokeOnPool(singletonPool(), a);
1187    }
1188
1189    /**
1190     * quietlyJoin of a forked task returns when task completes abnormally
1191     */
1192    public void testAbnormalForkQuietlyJoinSingleton() {
1193        RecursiveAction a = new CheckedRecursiveAction() {
1194            protected void realCompute() {
1195                FailingAsyncFib f = new FailingAsyncFib(8);
1196                assertSame(f, f.fork());
1197                f.quietlyJoin();
1198                assertTrue(f.getException() instanceof FJException);
1199                checkCompletedAbnormally(f, f.getException());
1200            }};
1201        testInvokeOnPool(singletonPool(), a);
1202    }
1203
1204    /**
1205     * invoke task throws exception after invoking completeExceptionally
1206     */
1207    public void testCompleteExceptionallySingleton() {
1208        RecursiveAction a = new CheckedRecursiveAction() {
1209            protected void realCompute() {
1210                AsyncFib f = new AsyncFib(8);
1211                f.completeExceptionally(new FJException());
1212                try {
1213                    f.invoke();
1214                    shouldThrow();
1215                } catch (FJException success) {
1216                    checkCompletedAbnormally(f, success);
1217                }
1218            }};
1219        testInvokeOnPool(singletonPool(), a);
1220    }
1221
1222    /**
1223     * invokeAll(t1, t2) invokes all task arguments
1224     */
1225    public void testInvokeAll2Singleton() {
1226        RecursiveAction a = new CheckedRecursiveAction() {
1227            protected void realCompute() {
1228                AsyncFib f = new AsyncFib(8);
1229                AsyncFib g = new AsyncFib(9);
1230                invokeAll(f, g);
1231                assertEquals(21, f.number);
1232                assertEquals(34, g.number);
1233                checkCompletedNormally(f);
1234                checkCompletedNormally(g);
1235            }};
1236        testInvokeOnPool(singletonPool(), a);
1237    }
1238
1239    /**
1240     * invokeAll(tasks) with 1 argument invokes task
1241     */
1242    public void testInvokeAll1Singleton() {
1243        RecursiveAction a = new CheckedRecursiveAction() {
1244            protected void realCompute() {
1245                AsyncFib f = new AsyncFib(8);
1246                invokeAll(f);
1247                checkCompletedNormally(f);
1248                assertEquals(21, f.number);
1249            }};
1250        testInvokeOnPool(singletonPool(), a);
1251    }
1252
1253    /**
1254     * invokeAll(tasks) with > 2 argument invokes tasks
1255     */
1256    public void testInvokeAll3Singleton() {
1257        RecursiveAction a = new CheckedRecursiveAction() {
1258            protected void realCompute() {
1259                AsyncFib f = new AsyncFib(8);
1260                AsyncFib g = new AsyncFib(9);
1261                AsyncFib h = new AsyncFib(7);
1262                invokeAll(f, g, h);
1263                assertEquals(21, f.number);
1264                assertEquals(34, g.number);
1265                assertEquals(13, h.number);
1266                checkCompletedNormally(f);
1267                checkCompletedNormally(g);
1268                checkCompletedNormally(h);
1269            }};
1270        testInvokeOnPool(singletonPool(), a);
1271    }
1272
1273    /**
1274     * invokeAll(collection) invokes all tasks in the collection
1275     */
1276    public void testInvokeAllCollectionSingleton() {
1277        RecursiveAction a = new CheckedRecursiveAction() {
1278            protected void realCompute() {
1279                AsyncFib f = new AsyncFib(8);
1280                AsyncFib g = new AsyncFib(9);
1281                AsyncFib h = new AsyncFib(7);
1282                HashSet set = new HashSet();
1283                set.add(f);
1284                set.add(g);
1285                set.add(h);
1286                invokeAll(set);
1287                assertEquals(21, f.number);
1288                assertEquals(34, g.number);
1289                assertEquals(13, h.number);
1290                checkCompletedNormally(f);
1291                checkCompletedNormally(g);
1292                checkCompletedNormally(h);
1293            }};
1294        testInvokeOnPool(singletonPool(), a);
1295    }
1296
1297    /**
1298     * invokeAll(tasks) with any null task throws NPE
1299     */
1300    public void testInvokeAllNPESingleton() {
1301        RecursiveAction a = new CheckedRecursiveAction() {
1302            protected void realCompute() {
1303                AsyncFib f = new AsyncFib(8);
1304                AsyncFib g = new AsyncFib(9);
1305                AsyncFib h = null;
1306                try {
1307                    invokeAll(f, g, h);
1308                    shouldThrow();
1309                } catch (NullPointerException success) {}
1310            }};
1311        testInvokeOnPool(singletonPool(), a);
1312    }
1313
1314    /**
1315     * invokeAll(t1, t2) throw exception if any task does
1316     */
1317    public void testAbnormalInvokeAll2Singleton() {
1318        RecursiveAction a = new CheckedRecursiveAction() {
1319            protected void realCompute() {
1320                AsyncFib f = new AsyncFib(8);
1321                FailingAsyncFib g = new FailingAsyncFib(9);
1322                try {
1323                    invokeAll(f, g);
1324                    shouldThrow();
1325                } catch (FJException success) {
1326                    checkCompletedAbnormally(g, success);
1327                }
1328            }};
1329        testInvokeOnPool(singletonPool(), a);
1330    }
1331
1332    /**
1333     * invokeAll(tasks) with 1 argument throws exception if task does
1334     */
1335    public void testAbnormalInvokeAll1Singleton() {
1336        RecursiveAction a = new CheckedRecursiveAction() {
1337            protected void realCompute() {
1338                FailingAsyncFib g = new FailingAsyncFib(9);
1339                try {
1340                    invokeAll(g);
1341                    shouldThrow();
1342                } catch (FJException success) {
1343                    checkCompletedAbnormally(g, success);
1344                }
1345            }};
1346        testInvokeOnPool(singletonPool(), a);
1347    }
1348
1349    /**
1350     * invokeAll(tasks) with > 2 argument throws exception if any task does
1351     */
1352    public void testAbnormalInvokeAll3Singleton() {
1353        RecursiveAction a = new CheckedRecursiveAction() {
1354            protected void realCompute() {
1355                AsyncFib f = new AsyncFib(8);
1356                FailingAsyncFib g = new FailingAsyncFib(9);
1357                AsyncFib h = new AsyncFib(7);
1358                try {
1359                    invokeAll(f, g, h);
1360                    shouldThrow();
1361                } catch (FJException success) {
1362                    checkCompletedAbnormally(g, success);
1363                }
1364            }};
1365        testInvokeOnPool(singletonPool(), a);
1366    }
1367
1368    /**
1369     * invokeAll(collection) throws exception if any task does
1370     */
1371    public void testAbnormalInvokeAllCollectionSingleton() {
1372        RecursiveAction a = new CheckedRecursiveAction() {
1373            protected void realCompute() {
1374                FailingAsyncFib f = new FailingAsyncFib(8);
1375                AsyncFib g = new AsyncFib(9);
1376                AsyncFib h = new AsyncFib(7);
1377                HashSet set = new HashSet();
1378                set.add(f);
1379                set.add(g);
1380                set.add(h);
1381                try {
1382                    invokeAll(set);
1383                    shouldThrow();
1384                } catch (FJException success) {
1385                    checkCompletedAbnormally(f, success);
1386                }
1387            }};
1388        testInvokeOnPool(singletonPool(), a);
1389    }
1390
1135      /**
1136       * ForkJoinTask.quietlyComplete returns when task completes
1137       * normally without setting a value. The most recent value
# Line 1409 | Line 1153 | public class ForkJoinTask8Test extends J
1153          testInvokeOnPool(mainPool(), a);
1154      }
1155  
1156 +    // jdk9
1157 +
1158 +    /**
1159 +     * pollSubmission returns unexecuted submitted task, if present
1160 +     */
1161 +    public void testPollSubmission() {
1162 +        final CountDownLatch done = new CountDownLatch(1);
1163 +        final ForkJoinTask a = ForkJoinTask.adapt(awaiter(done));
1164 +        final ForkJoinTask b = ForkJoinTask.adapt(awaiter(done));
1165 +        final ForkJoinTask c = ForkJoinTask.adapt(awaiter(done));
1166 +        final ForkJoinPool p = singletonPool();
1167 +        try (PoolCleaner cleaner = cleaner(p, done)) {
1168 +            Thread external = new Thread(new CheckedRunnable() {
1169 +                public void realRun() {
1170 +                    p.execute(a);
1171 +                    p.execute(b);
1172 +                    p.execute(c);
1173 +                }});
1174 +            RecursiveAction s = new CheckedRecursiveAction() {
1175 +                protected void realCompute() {
1176 +                    external.start();
1177 +                    try {
1178 +                        external.join();
1179 +                    } catch (Exception ex) {
1180 +                        threadUnexpectedException(ex);
1181 +                    }
1182 +                    assertTrue(p.hasQueuedSubmissions());
1183 +                    assertTrue(Thread.currentThread() instanceof ForkJoinWorkerThread);
1184 +                    ForkJoinTask r = ForkJoinTask.pollSubmission();
1185 +                    assertTrue(r == a || r == b || r == c);
1186 +                    assertFalse(r.isDone());
1187 +                }};
1188 +            p.invoke(s);
1189 +        }
1190 +    }
1191 +
1192   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines