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.200 by jsr166, Wed Aug 10 01:28:14 2016 UTC vs.
Revision 1.205 by jsr166, Mon Oct 17 17:52:30 2016 UTC

# Line 447 | Line 447 | public class JSR166TestCase extends Test
447              AbstractQueuedLongSynchronizerTest.suite(),
448              ArrayBlockingQueueTest.suite(),
449              ArrayDequeTest.suite(),
450 +            ArrayListTest.suite(),
451              AtomicBooleanTest.suite(),
452              AtomicIntegerArrayTest.suite(),
453              AtomicIntegerFieldUpdaterTest.suite(),
# Line 469 | Line 470 | public class JSR166TestCase extends Test
470              CopyOnWriteArrayListTest.suite(),
471              CopyOnWriteArraySetTest.suite(),
472              CountDownLatchTest.suite(),
473 +            CountedCompleterTest.suite(),
474              CyclicBarrierTest.suite(),
475              DelayQueueTest.suite(),
476              EntryTest.suite(),
# Line 505 | Line 507 | public class JSR166TestCase extends Test
507                  "Atomic8Test",
508                  "CompletableFutureTest",
509                  "ConcurrentHashMap8Test",
510 <                "CountedCompleterTest",
510 >                "CountedCompleter8Test",
511                  "DoubleAccumulatorTest",
512                  "DoubleAdderTest",
513                  "ForkJoinPool8Test",
# Line 1005 | Line 1007 | public class JSR166TestCase extends Test
1007          ThreadMXBean threadMXBean = ManagementFactory.getThreadMXBean();
1008          System.err.println("------ stacktrace dump start ------");
1009          for (ThreadInfo info : threadMXBean.dumpAllThreads(true, true)) {
1010 <            String name = info.getThreadName();
1010 >            final String name = info.getThreadName();
1011 >            String lockName;
1012              if ("Signal Dispatcher".equals(name))
1013                  continue;
1014              if ("Reference Handler".equals(name)
1015 <                && info.getLockName().startsWith("java.lang.ref.Reference$Lock"))
1015 >                && (lockName = info.getLockName()) != null
1016 >                && lockName.startsWith("java.lang.ref.Reference$Lock"))
1017                  continue;
1018              if ("Finalizer".equals(name)
1019 <                && info.getLockName().startsWith("java.lang.ref.ReferenceQueue$Lock"))
1019 >                && (lockName = info.getLockName()) != null
1020 >                && lockName.startsWith("java.lang.ref.ReferenceQueue$Lock"))
1021                  continue;
1022              if ("checkForWedgedTest".equals(name))
1023                  continue;
# Line 1237 | Line 1242 | public class JSR166TestCase extends Test
1242       * Sleeps until the given time has elapsed.
1243       * Throws AssertionFailedError if interrupted.
1244       */
1245 <    void sleep(long millis) {
1245 >    static void sleep(long millis) {
1246          try {
1247              delay(millis);
1248          } catch (InterruptedException fail) {
# Line 1756 | Line 1761 | public class JSR166TestCase extends Test
1761       * A CyclicBarrier that uses timed await and fails with
1762       * AssertionFailedErrors instead of throwing checked exceptions.
1763       */
1764 <    public class CheckedBarrier extends CyclicBarrier {
1764 >    public static class CheckedBarrier extends CyclicBarrier {
1765          public CheckedBarrier(int parties) { super(parties); }
1766  
1767          public int await() {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines