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

Comparing jsr166/src/test/tck/ThreadPoolExecutorSubclassTest.java (file contents):
Revision 1.25 by jsr166, Tue Mar 15 19:47:07 2011 UTC vs.
Revision 1.27 by jsr166, Sat May 7 19:34:51 2011 UTC

# Line 290 | Line 290 | public class ThreadPoolExecutorSubclassT
290              assertEquals(0, p.getCompletedTaskCount());
291              threadProceed.countDown();
292              threadDone.await();
293 <            Thread.sleep(SHORT_DELAY_MS);
293 >            delay(SHORT_DELAY_MS);
294              assertEquals(1, p.getCompletedTaskCount());
295          } finally {
296              joinPool(p);
# Line 671 | Line 671 | public class ThreadPoolExecutorSubclassT
671      /**
672       * shutDownNow returns a list containing tasks that were not run
673       */
674 <    public void testShutDownNow() {
674 >    public void testShutdownNow() {
675          ThreadPoolExecutor p = new CustomTPE(1, 1, LONG_DELAY_MS, MILLISECONDS, new ArrayBlockingQueue<Runnable>(10));
676          List l;
677          try {
# Line 1251 | Line 1251 | public class ThreadPoolExecutorSubclassT
1251          try {
1252              TrackedNoOpRunnable r = new TrackedNoOpRunnable();
1253              p.execute(r);
1254 <            Thread.sleep(SHORT_DELAY_MS);
1254 >            delay(SHORT_DELAY_MS);
1255              assertTrue(r.done);
1256              assertTrue(p.beforeCalled);
1257              assertTrue(p.afterCalled);
# Line 1742 | Line 1742 | public class ThreadPoolExecutorSubclassT
1742              for (int i = 0; i < (MEDIUM_DELAY_MS/10); i++) {
1743                  if (p.getPoolSize() == 0)
1744                      break;
1745 <                Thread.sleep(10);
1745 >                delay(10);
1746              }
1747              assertEquals(0, p.getPoolSize());
1748          } finally {
# Line 1766 | Line 1766 | public class ThreadPoolExecutorSubclassT
1766                      threadStarted.countDown();
1767                      assertTrue(p.getPoolSize() >= 1);
1768                  }});
1769 <            Thread.sleep(SMALL_DELAY_MS);
1769 >            delay(SMALL_DELAY_MS);
1770              assertTrue(p.getPoolSize() >= 1);
1771          } finally {
1772              joinPool(p);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines