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.21 by dl, Fri Jan 16 16:49:40 2004 UTC vs.
Revision 1.22 by dl, Tue Jan 20 20:20:56 2004 UTC

# Line 94 | Line 94 | public class JSR166TestCase extends Test
94          if (args.length > 0)
95              iters = Integer.parseInt(args[0]);
96          Test s = suite();
97 <        for (int i = 0; i < iters; ++i)
97 >        for (int i = 0; i < iters; ++i) {
98              junit.textui.TestRunner.run (s);
99 +            System.gc();
100 +            System.runFinalization();
101 +        }
102 +        System.exit(0);
103      }
104  
105      /**
# Line 283 | Line 287 | public class JSR166TestCase extends Test
287          try {
288              exec.shutdown();
289              assertTrue(exec.awaitTermination(LONG_DELAY_MS, TimeUnit.MILLISECONDS));
290 +        } catch(SecurityException ok) {
291 +            // Allowed in case test doesn't have privs
292          } catch(InterruptedException ie) {
293              fail("Unexpected exception");
294          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines