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.8 by jsr166, Thu Jan 15 18:34:19 2015 UTC vs.
Revision 1.22 by dl, Thu Oct 8 23:02:21 2015 UTC

# Line 7 | Line 7
7   import static java.util.concurrent.TimeUnit.MILLISECONDS;
8   import static java.util.concurrent.TimeUnit.SECONDS;
9  
10 < import java.util.HashSet;
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  
# Line 34 | 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 59 | 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 76 | Line 90 | public class ForkJoinTask8Test extends J
90              assertFalse(a.isCancelled());
91              assertNull(a.getException());
92              assertNull(a.getRawResult());
79        } finally {
80            joinPool(pool);
93          }
94      }
95  
# Line 114 | 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 160 | 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 186 | Line 198 | public class ForkJoinTask8Test extends J
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 279 | 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 303 | 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 311 | 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 347 | 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);
355 <                checkCompletedNormally(f);
380 >                f.checkCompletedNormally();
381              }};
382 <        testInvokeOnPool(mainPool(), a);
382 >        testInvokeOnPool(pool, a);
383      }
384  
385      /**
# Line 363 | 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);
371 <                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);
386 <                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);
401 <                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);
416 <                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 431 | 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);
447 <                checkCompletedNormally(f);
503 >                f.checkCompletedNormally();
504              }};
505 <        testInvokeOnPool(mainPool(), a);
505 >        testInvokeOnPool(pool, a);
506      }
507  
508      /**
# Line 454 | 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();
462                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 480 | 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 494 | 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 512 | 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 532 | 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 552 | 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 567 | 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 597 | 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 631 | 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 642 | 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);
657 <                assertEquals(21, f.number);
658 <                assertEquals(34, g.number);
659 <                checkCompletedNormally(f);
660 <                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);
693 <                checkCompletedNormally(g);
694 <                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);
713 <                assertEquals(21, f.number);
714 <                assertEquals(34, g.number);
715 <                assertEquals(13, h.number);
716 <                checkCompletedNormally(f);
717 <                checkCompletedNormally(g);
718 <                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() {
746                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);
805 <                set.add(g);
806 <                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 828 | 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 849 | 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 868 | 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 889 | Line 1052 | public class ForkJoinTask8Test extends J
1052                  assertSame(f, pollNextLocalTask());
1053                  helpQuiesce();
1054                  checkNotDone(f);
1055 <                assertEquals(34, g.number);
893 <                checkCompletedNormally(g);
1055 >                g.checkCompletedNormally();
1056              }};
1057          testInvokeOnPool(singletonPool(), a);
1058      }
# Line 908 | 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 926 | 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);
931 <                checkCompletedNormally(g);
1091 >                f.checkCompletedNormally();
1092 >                g.checkCompletedNormally();
1093              }};
1094          testInvokeOnPool(asyncSingletonPool(), a);
1095      }
# Line 946 | Line 1107 | public class ForkJoinTask8Test extends J
1107                  assertSame(f, f.fork());
1108                  assertSame(g, pollNextLocalTask());
1109                  helpQuiesce();
1110 <                assertEquals(21, f.number);
950 <                checkCompletedNormally(f);
1110 >                f.checkCompletedNormally();
1111                  checkNotDone(g);
1112              }};
1113          testInvokeOnPool(asyncSingletonPool(), a);
# Line 966 | Line 1126 | public class ForkJoinTask8Test extends J
1126                  assertSame(f, f.fork());
1127                  assertSame(g, pollTask());
1128                  helpQuiesce();
1129 <                assertEquals(21, f.number);
970 <                checkCompletedNormally(f);
1129 >                f.checkCompletedNormally();
1130                  checkNotDone(g);
1131              }};
1132          testInvokeOnPool(asyncSingletonPool(), a);
1133      }
1134  
976    // versions for singleton pools
977
978    /**
979     * invoke returns when task completes normally.
980     * isCompletedAbnormally and isCancelled return false for normally
981     * completed tasks; getRawResult returns null.
982     */
983    public void testInvokeSingleton() {
984        RecursiveAction a = new CheckedRecursiveAction() {
985            protected void realCompute() {
986                AsyncFib f = new AsyncFib(8);
987                assertNull(f.invoke());
988                assertEquals(21, f.number);
989                checkCompletedNormally(f);
990            }};
991        testInvokeOnPool(singletonPool(), a);
992    }
993
994    /**
995     * quietlyInvoke task returns when task completes normally.
996     * isCompletedAbnormally and isCancelled return false for normally
997     * completed tasks
998     */
999    public void testQuietlyInvokeSingleton() {
1000        RecursiveAction a = new CheckedRecursiveAction() {
1001            protected void realCompute() {
1002                AsyncFib f = new AsyncFib(8);
1003                f.quietlyInvoke();
1004                assertEquals(21, f.number);
1005                checkCompletedNormally(f);
1006            }};
1007        testInvokeOnPool(singletonPool(), a);
1008    }
1009
1010    /**
1011     * join of a forked task returns when task completes
1012     */
1013    public void testForkJoinSingleton() {
1014        RecursiveAction a = new CheckedRecursiveAction() {
1015            protected void realCompute() {
1016                AsyncFib f = new AsyncFib(8);
1017                assertSame(f, f.fork());
1018                assertNull(f.join());
1019                assertEquals(21, f.number);
1020                checkCompletedNormally(f);
1021            }};
1022        testInvokeOnPool(singletonPool(), a);
1023    }
1024
1025    /**
1026     * get of a forked task returns when task completes
1027     */
1028    public void testForkGetSingleton() {
1029        RecursiveAction a = new CheckedRecursiveAction() {
1030            protected void realCompute() throws Exception {
1031                AsyncFib f = new AsyncFib(8);
1032                assertSame(f, f.fork());
1033                assertNull(f.get());
1034                assertEquals(21, f.number);
1035                checkCompletedNormally(f);
1036            }};
1037        testInvokeOnPool(singletonPool(), a);
1038    }
1039
1040    /**
1041     * timed get of a forked task returns when task completes
1042     */
1043    public void testForkTimedGetSingleton() {
1044        RecursiveAction a = new CheckedRecursiveAction() {
1045            protected void realCompute() throws Exception {
1046                AsyncFib f = new AsyncFib(8);
1047                assertSame(f, f.fork());
1048                assertNull(f.get(LONG_DELAY_MS, MILLISECONDS));
1049                assertEquals(21, f.number);
1050                checkCompletedNormally(f);
1051            }};
1052        testInvokeOnPool(singletonPool(), a);
1053    }
1054
1055    /**
1056     * timed get with null time unit throws NPE
1057     */
1058    public void testForkTimedGetNPESingleton() {
1059        RecursiveAction a = new CheckedRecursiveAction() {
1060            protected void realCompute() throws Exception {
1061                AsyncFib f = new AsyncFib(8);
1062                assertSame(f, f.fork());
1063                try {
1064                    f.get(5L, null);
1065                    shouldThrow();
1066                } catch (NullPointerException success) {}
1067            }};
1068        testInvokeOnPool(singletonPool(), a);
1069    }
1070
1071    /**
1072     * quietlyJoin of a forked task returns when task completes
1073     */
1074    public void testForkQuietlyJoinSingleton() {
1075        RecursiveAction a = new CheckedRecursiveAction() {
1076            protected void realCompute() {
1077                AsyncFib f = new AsyncFib(8);
1078                assertSame(f, f.fork());
1079                f.quietlyJoin();
1080                assertEquals(21, f.number);
1081                checkCompletedNormally(f);
1082            }};
1083        testInvokeOnPool(singletonPool(), a);
1084    }
1085
1086    /**
1087     * helpQuiesce returns when tasks are complete.
1088     * getQueuedTaskCount returns 0 when quiescent
1089     */
1090    public void testForkHelpQuiesceSingleton() {
1091        RecursiveAction a = new CheckedRecursiveAction() {
1092            protected void realCompute() {
1093                AsyncFib f = new AsyncFib(8);
1094                assertSame(f, f.fork());
1095                helpQuiesce();
1096                assertEquals(0, getQueuedTaskCount());
1097                assertEquals(21, f.number);
1098                checkCompletedNormally(f);
1099            }};
1100        testInvokeOnPool(singletonPool(), a);
1101    }
1102
1103    /**
1104     * invoke task throws exception when task completes abnormally
1105     */
1106    public void testAbnormalInvokeSingleton() {
1107        RecursiveAction a = new CheckedRecursiveAction() {
1108            protected void realCompute() {
1109                FailingAsyncFib f = new FailingAsyncFib(8);
1110                try {
1111                    f.invoke();
1112                    shouldThrow();
1113                } catch (FJException success) {
1114                    checkCompletedAbnormally(f, success);
1115                }
1116            }};
1117        testInvokeOnPool(singletonPool(), a);
1118    }
1119
1120    /**
1121     * quietlyInvoke task returns when task completes abnormally
1122     */
1123    public void testAbnormalQuietlyInvokeSingleton() {
1124        RecursiveAction a = new CheckedRecursiveAction() {
1125            protected void realCompute() {
1126                FailingAsyncFib f = new FailingAsyncFib(8);
1127                f.quietlyInvoke();
1128                assertTrue(f.getException() instanceof FJException);
1129                checkCompletedAbnormally(f, f.getException());
1130            }};
1131        testInvokeOnPool(singletonPool(), a);
1132    }
1133
1134    /**
1135     * join of a forked task throws exception when task completes abnormally
1136     */
1137    public void testAbnormalForkJoinSingleton() {
1138        RecursiveAction a = new CheckedRecursiveAction() {
1139            protected void realCompute() {
1140                FailingAsyncFib f = new FailingAsyncFib(8);
1141                assertSame(f, f.fork());
1142                try {
1143                    f.join();
1144                    shouldThrow();
1145                } catch (FJException success) {
1146                    checkCompletedAbnormally(f, success);
1147                }
1148            }};
1149        testInvokeOnPool(singletonPool(), a);
1150    }
1151
1152    /**
1153     * get of a forked task throws exception when task completes abnormally
1154     */
1155    public void testAbnormalForkGetSingleton() {
1156        RecursiveAction a = new CheckedRecursiveAction() {
1157            protected void realCompute() throws Exception {
1158                FailingAsyncFib f = new FailingAsyncFib(8);
1159                assertSame(f, f.fork());
1160                try {
1161                    f.get();
1162                    shouldThrow();
1163                } catch (ExecutionException success) {
1164                    Throwable cause = success.getCause();
1165                    assertTrue(cause instanceof FJException);
1166                    checkCompletedAbnormally(f, cause);
1167                }
1168            }};
1169        testInvokeOnPool(singletonPool(), a);
1170    }
1171
1172    /**
1173     * timed get of a forked task throws exception when task completes abnormally
1174     */
1175    public void testAbnormalForkTimedGetSingleton() {
1176        RecursiveAction a = new CheckedRecursiveAction() {
1177            protected void realCompute() throws Exception {
1178                FailingAsyncFib f = new FailingAsyncFib(8);
1179                assertSame(f, f.fork());
1180                try {
1181                    f.get(LONG_DELAY_MS, MILLISECONDS);
1182                    shouldThrow();
1183                } catch (ExecutionException success) {
1184                    Throwable cause = success.getCause();
1185                    assertTrue(cause instanceof FJException);
1186                    checkCompletedAbnormally(f, cause);
1187                }
1188            }};
1189        testInvokeOnPool(singletonPool(), a);
1190    }
1191
1192    /**
1193     * quietlyJoin of a forked task returns when task completes abnormally
1194     */
1195    public void testAbnormalForkQuietlyJoinSingleton() {
1196        RecursiveAction a = new CheckedRecursiveAction() {
1197            protected void realCompute() {
1198                FailingAsyncFib f = new FailingAsyncFib(8);
1199                assertSame(f, f.fork());
1200                f.quietlyJoin();
1201                assertTrue(f.getException() instanceof FJException);
1202                checkCompletedAbnormally(f, f.getException());
1203            }};
1204        testInvokeOnPool(singletonPool(), a);
1205    }
1206
1207    /**
1208     * invoke task throws exception after invoking completeExceptionally
1209     */
1210    public void testCompleteExceptionallySingleton() {
1211        RecursiveAction a = new CheckedRecursiveAction() {
1212            protected void realCompute() {
1213                AsyncFib f = new AsyncFib(8);
1214                f.completeExceptionally(new FJException());
1215                try {
1216                    f.invoke();
1217                    shouldThrow();
1218                } catch (FJException success) {
1219                    checkCompletedAbnormally(f, success);
1220                }
1221            }};
1222        testInvokeOnPool(singletonPool(), a);
1223    }
1224
1225    /**
1226     * invokeAll(t1, t2) invokes all task arguments
1227     */
1228    public void testInvokeAll2Singleton() {
1229        RecursiveAction a = new CheckedRecursiveAction() {
1230            protected void realCompute() {
1231                AsyncFib f = new AsyncFib(8);
1232                AsyncFib g = new AsyncFib(9);
1233                invokeAll(f, g);
1234                assertEquals(21, f.number);
1235                assertEquals(34, g.number);
1236                checkCompletedNormally(f);
1237                checkCompletedNormally(g);
1238            }};
1239        testInvokeOnPool(singletonPool(), a);
1240    }
1241
1242    /**
1243     * invokeAll(tasks) with 1 argument invokes task
1244     */
1245    public void testInvokeAll1Singleton() {
1246        RecursiveAction a = new CheckedRecursiveAction() {
1247            protected void realCompute() {
1248                AsyncFib f = new AsyncFib(8);
1249                invokeAll(f);
1250                checkCompletedNormally(f);
1251                assertEquals(21, f.number);
1252            }};
1253        testInvokeOnPool(singletonPool(), a);
1254    }
1255
1256    /**
1257     * invokeAll(tasks) with > 2 argument invokes tasks
1258     */
1259    public void testInvokeAll3Singleton() {
1260        RecursiveAction a = new CheckedRecursiveAction() {
1261            protected void realCompute() {
1262                AsyncFib f = new AsyncFib(8);
1263                AsyncFib g = new AsyncFib(9);
1264                AsyncFib h = new AsyncFib(7);
1265                invokeAll(f, g, h);
1266                assertEquals(21, f.number);
1267                assertEquals(34, g.number);
1268                assertEquals(13, h.number);
1269                checkCompletedNormally(f);
1270                checkCompletedNormally(g);
1271                checkCompletedNormally(h);
1272            }};
1273        testInvokeOnPool(singletonPool(), a);
1274    }
1275
1276    /**
1277     * invokeAll(collection) invokes all tasks in the collection
1278     */
1279    public void testInvokeAllCollectionSingleton() {
1280        RecursiveAction a = new CheckedRecursiveAction() {
1281            protected void realCompute() {
1282                AsyncFib f = new AsyncFib(8);
1283                AsyncFib g = new AsyncFib(9);
1284                AsyncFib h = new AsyncFib(7);
1285                HashSet set = new HashSet();
1286                set.add(f);
1287                set.add(g);
1288                set.add(h);
1289                invokeAll(set);
1290                assertEquals(21, f.number);
1291                assertEquals(34, g.number);
1292                assertEquals(13, h.number);
1293                checkCompletedNormally(f);
1294                checkCompletedNormally(g);
1295                checkCompletedNormally(h);
1296            }};
1297        testInvokeOnPool(singletonPool(), a);
1298    }
1299
1300    /**
1301     * invokeAll(tasks) with any null task throws NPE
1302     */
1303    public void testInvokeAllNPESingleton() {
1304        RecursiveAction a = new CheckedRecursiveAction() {
1305            protected void realCompute() {
1306                AsyncFib f = new AsyncFib(8);
1307                AsyncFib g = new AsyncFib(9);
1308                AsyncFib h = null;
1309                try {
1310                    invokeAll(f, g, h);
1311                    shouldThrow();
1312                } catch (NullPointerException success) {}
1313            }};
1314        testInvokeOnPool(singletonPool(), a);
1315    }
1316
1317    /**
1318     * invokeAll(t1, t2) throw exception if any task does
1319     */
1320    public void testAbnormalInvokeAll2Singleton() {
1321        RecursiveAction a = new CheckedRecursiveAction() {
1322            protected void realCompute() {
1323                AsyncFib f = new AsyncFib(8);
1324                FailingAsyncFib g = new FailingAsyncFib(9);
1325                try {
1326                    invokeAll(f, g);
1327                    shouldThrow();
1328                } catch (FJException success) {
1329                    checkCompletedAbnormally(g, success);
1330                }
1331            }};
1332        testInvokeOnPool(singletonPool(), a);
1333    }
1334
1335    /**
1336     * invokeAll(tasks) with 1 argument throws exception if task does
1337     */
1338    public void testAbnormalInvokeAll1Singleton() {
1339        RecursiveAction a = new CheckedRecursiveAction() {
1340            protected void realCompute() {
1341                FailingAsyncFib g = new FailingAsyncFib(9);
1342                try {
1343                    invokeAll(g);
1344                    shouldThrow();
1345                } catch (FJException success) {
1346                    checkCompletedAbnormally(g, success);
1347                }
1348            }};
1349        testInvokeOnPool(singletonPool(), a);
1350    }
1351
1352    /**
1353     * invokeAll(tasks) with > 2 argument throws exception if any task does
1354     */
1355    public void testAbnormalInvokeAll3Singleton() {
1356        RecursiveAction a = new CheckedRecursiveAction() {
1357            protected void realCompute() {
1358                AsyncFib f = new AsyncFib(8);
1359                FailingAsyncFib g = new FailingAsyncFib(9);
1360                AsyncFib h = new AsyncFib(7);
1361                try {
1362                    invokeAll(f, g, h);
1363                    shouldThrow();
1364                } catch (FJException success) {
1365                    checkCompletedAbnormally(g, success);
1366                }
1367            }};
1368        testInvokeOnPool(singletonPool(), a);
1369    }
1370
1371    /**
1372     * invokeAll(collection) throws exception if any task does
1373     */
1374    public void testAbnormalInvokeAllCollectionSingleton() {
1375        RecursiveAction a = new CheckedRecursiveAction() {
1376            protected void realCompute() {
1377                FailingAsyncFib f = new FailingAsyncFib(8);
1378                AsyncFib g = new AsyncFib(9);
1379                AsyncFib h = new AsyncFib(7);
1380                HashSet set = new HashSet();
1381                set.add(f);
1382                set.add(g);
1383                set.add(h);
1384                try {
1385                    invokeAll(set);
1386                    shouldThrow();
1387                } catch (FJException success) {
1388                    checkCompletedAbnormally(f, success);
1389                }
1390            }};
1391        testInvokeOnPool(singletonPool(), a);
1392    }
1393
1135      /**
1136       * ForkJoinTask.quietlyComplete returns when task completes
1137       * normally without setting a value. The most recent value
# Line 1412 | 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