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

Comparing jsr166/src/test/tck/ExecutorCompletionServiceTest.java (file contents):
Revision 1.13 by jsr166, Tue Mar 15 19:47:06 2011 UTC vs.
Revision 1.15 by jsr166, Fri May 27 19:42:42 2011 UTC

# Line 6 | Line 6
6   * Pat Fisher, Mike Judd.
7   */
8  
9
9   import junit.framework.*;
10   import java.util.*;
11   import java.util.concurrent.*;
# Line 23 | Line 22 | public class ExecutorCompletionServiceTe
22          return new TestSuite(ExecutorCompletionServiceTest.class);
23      }
24  
26
25      /**
26       * Creating a new ECS with null Executor throw NPE
27       */
# Line 119 | Line 117 | public class ExecutorCompletionServiceTe
117              assertNull(ecs.poll());
118              Callable c = new StringTask();
119              ecs.submit(c);
120 <            Thread.sleep(SHORT_DELAY_MS);
120 >            delay(SHORT_DELAY_MS);
121              for (;;) {
122                  Future f = ecs.poll();
123                  if (f != null) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines