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.14 by dl, Sun Dec 28 21:56:18 2003 UTC vs.
Revision 1.16 by dl, Wed Jan 7 01:02:17 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 153 | 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;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines