--- old/test/hotspot/jtreg/runtime/cds/appcds/AppendClasspath.java 2019-08-22 08:26:27.649506338 -0700 +++ new/test/hotspot/jtreg/runtime/cds/appcds/AppendClasspath.java 2019-08-22 08:26:27.409497699 -0700 @@ -95,19 +95,5 @@ "-cp", appJar2 + File.pathSeparator + appJar, "HelloMore") .assertAbnormalExit(errorMessage1, errorMessage2); - - // FAIL: 4) non-existing jar during dump time but jar exists during runtime - TestCommon.testDump(classPath, TestCommon.list("Hello")); - - Files.copy(Paths.get(classDir, "hello.jar"), - Paths.get(classDir, newFile), - StandardCopyOption.REPLACE_EXISTING); - - TestCommon.run( - "-cp", classPath, - "-Xlog:class+path=trace", - "Hello") - .assertAbnormalExit(errorMessage1, errorMessage2); - } }