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

Comparing jsr166/src/test/tck/ScheduledExecutorTest.java (file contents):
Revision 1.41 by jsr166, Sat May 7 19:49:37 2011 UTC vs.
Revision 1.43 by jsr166, Fri May 27 19:48:58 2011 UTC

# Line 20 | Line 20 | public class ScheduledExecutorTest exten
20          return new TestSuite(ScheduledExecutorTest.class);
21      }
22  
23
23      /**
24       * execute successfully executes a runnable
25       */
# Line 39 | Line 38 | public class ScheduledExecutorTest exten
38          }
39      }
40  
42
41      /**
42       * delayed schedule of callable successfully executes after delay
43       */
# Line 176 | Line 174 | public class ScheduledExecutorTest exten
174          joinPool(p);
175      }
176  
179
177      /**
178       * execute(null) throws NPE
179       */
# Line 473 | Line 470 | public class ScheduledExecutorTest exten
470          assertTrue(p.isShutdown());
471      }
472  
476
473      /**
474       * isTerminated is false before termination, true after
475       */
# Line 664 | Line 660 | public class ScheduledExecutorTest exten
660          }
661      }
662  
667
663      /**
664       * If setExecuteExistingDelayedTasksAfterShutdownPolicy is false,
665       * delayed tasks are cancelled at shutdown
# Line 702 | Line 697 | public class ScheduledExecutorTest exten
697          p.setContinueExistingPeriodicTasksAfterShutdownPolicy(false);
698          assertTrue(p.getExecuteExistingDelayedTasksAfterShutdownPolicy());
699          assertFalse(p.getContinueExistingPeriodicTasksAfterShutdownPolicy());
700 +        long initialDelay = LONG_DELAY_MS;
701          ScheduledFuture task =
702 <            p.scheduleAtFixedRate(new NoOpRunnable(), 5, 5, MILLISECONDS);
702 >            p.scheduleAtFixedRate(new NoOpRunnable(), initialDelay,
703 >                                  5, MILLISECONDS);
704          try { p.shutdown(); } catch (SecurityException ok) { return; }
705          assertTrue(p.isShutdown());
709        BlockingQueue q = p.getQueue();
706          assertTrue(p.getQueue().isEmpty());
707          assertTrue(task.isDone());
708          assertTrue(task.isCancelled());
709 <        assertTrue(p.awaitTermination(SMALL_DELAY_MS, MILLISECONDS));
714 <        assertTrue(p.isTerminated());
709 >        joinPool(p);
710      }
711  
712      /**
# Line 1175 | Line 1170 | public class ScheduledExecutorTest exten
1170          }
1171      }
1172  
1178
1173   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines