< prev index next >

test/jdk/java/util/concurrent/tck/ScheduledExecutorSubclassTest.java

Print this page
8225490: Miscellaneous changes imported from jsr166 CVS 2019-09
Reviewed-by: martin, alanb

@@ -705,11 +705,11 @@
         final CustomExecutor p = new CustomExecutor(poolSize);
         final CountDownLatch threadsStarted = new CountDownLatch(poolSize);
         Runnable waiter = new CheckedRunnable() { public void realRun() {
             threadsStarted.countDown();
             try {
-                MILLISECONDS.sleep(2 * LONG_DELAY_MS);
+                MILLISECONDS.sleep(LONGER_DELAY_MS);
             } catch (InterruptedException success) {}
             ran.getAndIncrement();
         }};
         for (int i = 0; i < count; i++)
             p.execute(waiter);
< prev index next >