--- old/test/hotspot/jtreg/runtime/appcds/UseAppCDS.java 2018-03-01 09:22:54.660955072 -0800 +++ new/test/hotspot/jtreg/runtime/appcds/UseAppCDS.java 2018-03-01 09:22:54.400930572 -0800 @@ -87,8 +87,11 @@ // Next tests rely on the classlist we just dumped // Test 3: No AppCDS - "test" classes in classlist ignored when dumping + // Although AppCDS isn't used, all classes will be found during dumping + // after the fix for JDK-8193434. Classes which are not in the boot + // loader dictionary will not be saved into the archive. dumpArchive(false, new String[] { BOOTCLASS }, - new String[] { TESTNAME}); + new String[0]); // Test 4: AppCDS - "test" classes in classlist are dumped dumpArchive(true, new String[] { BOOTCLASS, TESTNAME },