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.150 by jsr166, Sat Oct 3 19:08:13 2015 UTC vs.
Revision 1.153 by jsr166, Sat Oct 3 19:37:43 2015 UTC

# Line 519 | Line 519 | public class JSR166TestCase extends Test
519       * the same test have no effect.
520       */
521      public void threadRecordFailure(Throwable t) {
522 +        printAllStackTraces();
523          threadFailure.compareAndSet(null, t);
524      }
525  
# Line 598 | Line 599 | public class JSR166TestCase extends Test
599              fail(reason);
600          } catch (AssertionFailedError t) {
601              threadRecordFailure(t);
602 <            fail(reason);
602 >            throw t;
603          }
604      }
605  
# Line 778 | Line 779 | public class JSR166TestCase extends Test
779       * necessarily individually slow because they must block.
780       */
781      void testInParallel(Action ... actions) {
782 <        ExecutorService pool = Executors.newCachedThreadPool();
783 <        try {
782 >        try (PoolCloser<ExecutorService> poolCloser
783 >             = new PoolCloser<>(Executors.newCachedThreadPool())) {
784 >            ExecutorService pool = poolCloser.pool;
785              ArrayList<Future<?>> futures = new ArrayList<>(actions.length);
786              for (final Action action : actions)
787                  futures.add(pool.submit(new CheckedRunnable() {
# Line 792 | Line 794 | public class JSR166TestCase extends Test
794                  } catch (Exception ex) {
795                      threadUnexpectedException(ex);
796                  }
795        } finally {
796            joinPool(pool);
797          }
798      }
799  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines