--- jsr166/src/test/tck/ThreadLocalTest.java 2014/12/31 19:05:43 1.15 +++ jsr166/src/test/tck/ThreadLocalTest.java 2015/04/25 04:55:31 1.17 @@ -11,7 +11,7 @@ import junit.framework.TestSuite; public class ThreadLocalTest extends JSR166TestCase { public static void main(String[] args) { - junit.textui.TestRunner.run(suite()); + main(suite(), args); } public static Test suite() { @@ -90,7 +90,7 @@ public class ThreadLocalTest extends JSR */ public void testGenericITL() throws InterruptedException { final int threadCount = 10; - final int x[] = new int[threadCount]; + final int[] x = new int[threadCount]; Thread progenitor = new ITLThread(x); progenitor.start(); progenitor.join();