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.17 by dl, Wed Jan 7 20:49:53 2004 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 89 | Line 90 | public class JSR166TestCase extends Test
90       * Runs all JSR166 unit tests using junit.textui.TestRunner
91       */
92      public static void main (String[] args) {
93 <        junit.textui.TestRunner.run (suite());
93 >        int iters = 1;
94 >        if (args.length > 0)
95 >            iters = Integer.parseInt(args[0]);
96 >        Test s = suite();
97 >        for (int i = 0; i < iters; ++i)
98 >            junit.textui.TestRunner.run (s);
99      }
100  
101      /**
# Line 99 | Line 105 | public class JSR166TestCase extends Test
105          TestSuite suite = new TestSuite("JSR166 Unit Tests");
106          
107          suite.addTest(new TestSuite(AbstractExecutorServiceTest.class));
108 +        suite.addTest(new TestSuite(AbstractQueuedSynchronizerTest.class));
109          suite.addTest(new TestSuite(ArrayBlockingQueueTest.class));
110          suite.addTest(new TestSuite(AtomicBooleanTest.class));
111          suite.addTest(new TestSuite(AtomicIntegerArrayTest.class));
# Line 121 | Line 128 | public class JSR166TestCase extends Test
128          suite.addTest(new TestSuite(DelayQueueTest.class));
129          suite.addTest(new TestSuite(ExchangerTest.class));
130          suite.addTest(new TestSuite(ExecutorsTest.class));
131 +        suite.addTest(new TestSuite(ExecutorCompletionServiceTest.class));
132          suite.addTest(new TestSuite(FutureTaskTest.class));
133          suite.addTest(new TestSuite(LinkedBlockingQueueTest.class));
134          suite.addTest(new TestSuite(LinkedListTest.class));
# Line 150 | Line 158 | public class JSR166TestCase extends Test
158  
159      /**
160       * Return the shortest timed delay. This could
161 <     * be reimplmented to use for example a Property.
161 >     * be reimplemented to use for example a Property.
162       */
163      protected long getShortDelay() {
164 <        return 100;
164 >        return 10;
165      }
166  
167  
# Line 465 | Line 473 | public class JSR166TestCase extends Test
473          }
474      }
475  
476 +    class LongPossiblyInterruptedRunnable implements Runnable {
477 +        public void run() {
478 +            try {
479 +                Thread.sleep(LONG_DELAY_MS);
480 +            }
481 +            catch(InterruptedException success) {
482 +            }
483 +        }
484 +    }
485 +
486      /**
487       * For use as ThreadFactory in constructors
488       */
# Line 526 | Line 544 | public class JSR166TestCase extends Test
544          }
545      }
546  
547 +
548      /**
549       * For use as RejectedExecutionHandler in constructors
550       */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines