--- jsr166/src/test/tck/JSR166TestCase.java 2003/12/28 21:56:18 1.14 +++ jsr166/src/test/tck/JSR166TestCase.java 2004/01/07 01:02:17 1.16 @@ -90,7 +90,12 @@ public class JSR166TestCase extends Test * Runs all JSR166 unit tests using junit.textui.TestRunner */ public static void main (String[] args) { - junit.textui.TestRunner.run (suite()); + int iters = 1; + if (args.length > 0) + iters = Integer.parseInt(args[0]); + Test s = suite(); + for (int i = 0; i < iters; ++i) + junit.textui.TestRunner.run (s); } /** @@ -153,7 +158,7 @@ public class JSR166TestCase extends Test /** * Return the shortest timed delay. This could - * be reimplmented to use for example a Property. + * be reimplemented to use for example a Property. */ protected long getShortDelay() { return 100;