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.13 by dl, Sat Dec 27 19:26:43 2003 UTC vs.
Revision 1.17 by dl, Wed Jan 7 20:49:53 2004 UTC

# Line 90 | 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 100 | 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 152 | 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 538 | 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