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.18 by dl, Fri Jan 9 15:39:10 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 105 | Line 109 | public class JSR166TestCase extends Test
109          TestSuite suite = new TestSuite("JSR166 Unit Tests");
110          
111          suite.addTest(new TestSuite(AbstractExecutorServiceTest.class));
112 +        suite.addTest(new TestSuite(AbstractQueueTest.class));
113          suite.addTest(new TestSuite(AbstractQueuedSynchronizerTest.class));
114          suite.addTest(new TestSuite(ArrayBlockingQueueTest.class));
115          suite.addTest(new TestSuite(AtomicBooleanTest.class));
# Line 161 | Line 166 | public class JSR166TestCase extends Test
166       * be reimplemented to use for example a Property.
167       */
168      protected long getShortDelay() {
169 <        return 10;
169 >        return 50;
170      }
171  
172  
# Line 282 | 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