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.13 by dl, Sat Dec 27 19:26:43 2003 UTC

# Line 1 | Line 1
1   /*
2 < * Written by members of JCP JSR-166 Expert Group and released to the
3 < * public domain. Use, modify, and redistribute this code in any way
4 < * without acknowledgement. Other contributors include Andrew Wright,
5 < * Jeffrey Hayes, Pat Fischer, Mike Judd.
2 > * Written by Doug Lea with assistance from members of JCP JSR-166
3 > * Expert Group and released to the public domain, as explained at
4 > * http://creativecommons.org/licenses/publicdomain
5 > * Other contributors include Andrew Wright, Jeffrey Hayes,
6 > * Pat Fisher, Mike Judd.
7   */
8  
9   import junit.framework.*;
# Line 121 | Line 122 | public class JSR166TestCase extends Test
122          suite.addTest(new TestSuite(DelayQueueTest.class));
123          suite.addTest(new TestSuite(ExchangerTest.class));
124          suite.addTest(new TestSuite(ExecutorsTest.class));
125 +        suite.addTest(new TestSuite(ExecutorCompletionServiceTest.class));
126          suite.addTest(new TestSuite(FutureTaskTest.class));
127          suite.addTest(new TestSuite(LinkedBlockingQueueTest.class));
128          suite.addTest(new TestSuite(LinkedListTest.class));
# Line 462 | Line 464 | public class JSR166TestCase extends Test
464              }
465              catch(InterruptedException success) {
466              }
467 +        }
468 +    }
469 +
470 +    class LongPossiblyInterruptedRunnable implements Runnable {
471 +        public void run() {
472 +            try {
473 +                Thread.sleep(LONG_DELAY_MS);
474 +            }
475 +            catch(InterruptedException success) {
476 +            }
477          }
478      }
479  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines