test/hotspot/jtreg/runtime/cds/appcds/AppendClasspath.java
changeset 57898 5ddb746d45e0
parent 57705 7cf02b2c1455
child 58679 9c3209ff7550
--- a/test/hotspot/jtreg/runtime/cds/appcds/AppendClasspath.java	Tue Aug 27 22:14:15 2019 -0700
+++ b/test/hotspot/jtreg/runtime/cds/appcds/AppendClasspath.java	Tue Aug 27 22:14:52 2019 -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);
-
     }
 }