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

Comparing jsr166/src/test/tck/JSR166TestCase.java (file contents):
Revision 1.10 by dl, Mon Dec 22 00:48:55 2003 UTC vs.
Revision 1.12 by dl, Thu Dec 25 19:48:57 2003 UTC

# Line 121 | Line 121 | public class JSR166TestCase extends Test
121          suite.addTest(new TestSuite(DelayQueueTest.class));
122          suite.addTest(new TestSuite(ExchangerTest.class));
123          suite.addTest(new TestSuite(ExecutorsTest.class));
124 +        suite.addTest(new TestSuite(ExecutorCompletionServiceTest.class));
125          suite.addTest(new TestSuite(FutureTaskTest.class));
126          suite.addTest(new TestSuite(LinkedBlockingQueueTest.class));
127          suite.addTest(new TestSuite(LinkedListTest.class));
# Line 462 | Line 463 | public class JSR166TestCase extends Test
463              }
464              catch(InterruptedException success) {
465              }
466 +        }
467 +    }
468 +
469 +    class LongPossiblyInterruptedRunnable implements Runnable {
470 +        public void run() {
471 +            try {
472 +                Thread.sleep(LONG_DELAY_MS);
473 +            }
474 +            catch(InterruptedException success) {
475 +            }
476          }
477      }
478  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines