--- jsr166/src/test/tck/ForkJoinTaskTest.java 2010/08/25 00:07:03 1.9 +++ jsr166/src/test/tck/ForkJoinTaskTest.java 2010/09/11 07:31:52 1.11 @@ -44,7 +44,7 @@ public class ForkJoinTaskTest extends JS static final ForkJoinPool mainPool = new ForkJoinPool(); static final ForkJoinPool singletonPool = new ForkJoinPool(1); - static final ForkJoinPool asyncSingletonPool = + static final ForkJoinPool asyncSingletonPool = new ForkJoinPool(1, ForkJoinPool.defaultForkJoinWorkerThreadFactory, null, true); static final class FJException extends RuntimeException { @@ -224,7 +224,6 @@ public class ForkJoinTaskTest extends JS * invoke returns when task completes normally. * isCompletedAbnormally and isCancelled return false for normally * completed tasks. getRawResult of a RecursiveAction returns null; - * */ public void testInvoke() { RecursiveAction a = new RecursiveAction() {