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

Comparing jsr166/src/test/tck/ForkJoinPoolTest.java (file contents):
Revision 1.75 by jsr166, Mon May 29 22:44:27 2017 UTC vs.
Revision 1.78 by jsr166, Mon Dec 16 22:55:54 2019 UTC

# Line 28 | Line 28 | import java.util.concurrent.atomic.Atomi
28   import java.util.concurrent.atomic.AtomicInteger;
29   import java.util.concurrent.locks.ReentrantLock;
30  
31 import junit.framework.AssertionFailedError;
31   import junit.framework.Test;
32   import junit.framework.TestSuite;
33  
# Line 110 | Line 109 | public class ForkJoinPoolTest extends JS
109                  return n;
110              FibTask f1 = new FibTask(n - 1);
111              f1.fork();
112 <            return (new FibTask(n - 2)).compute() + f1.join();
112 >            return new FibTask(n - 2).compute() + f1.join();
113          }
114      }
115  
# Line 304 | Line 303 | public class ForkJoinPoolTest extends JS
303                         p.getFactory());
304              while (! p.isQuiescent()) {
305                  if (millisElapsedSince(startTime) > LONG_DELAY_MS)
306 <                    throw new AssertionFailedError("timed out");
306 >                    throw new AssertionError("timed out");
307                  assertFalse(p.getAsyncMode());
308                  assertFalse(p.isShutdown());
309                  assertFalse(p.isTerminating());
# Line 349 | Line 348 | public class ForkJoinPoolTest extends JS
348              p.shutdown();
349              assertTrue(p.isShutdown());
350              try {
351 <                ForkJoinTask<Integer> f = p.submit(new FibTask(8));
351 >                ForkJoinTask<Integer> unused = p.submit(new FibTask(8));
352                  shouldThrow();
353              } catch (RejectedExecutionException success) {}
354          }
# Line 537 | Line 536 | public class ForkJoinPoolTest extends JS
536          ExecutorService e = new ForkJoinPool(1);
537          try (PoolCleaner cleaner = cleaner(e)) {
538              try {
539 <                Future<?> future = e.submit((Runnable) null);
539 >                Future<?> unused = e.submit((Runnable) null);
540                  shouldThrow();
541              } catch (NullPointerException success) {}
542          }
# Line 550 | Line 549 | public class ForkJoinPoolTest extends JS
549          ExecutorService e = new ForkJoinPool(1);
550          try (PoolCleaner cleaner = cleaner(e)) {
551              try {
552 <                Future<String> future = e.submit((Callable) null);
552 >                Future<String> unused = e.submit((Callable) null);
553                  shouldThrow();
554              } catch (NullPointerException success) {}
555          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines