Skip to content

Commit d6d6eb4

Browse files
ashu-mehracalvinccheung
authored andcommittedJan 6, 2023
8299699: Test runtime/cds/appcds/WrongClasspath.java fails after JDK-8299329
Reviewed-by: iklam, ccheung
1 parent 8c70bf3 commit d6d6eb4

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
 

‎test/hotspot/jtreg/runtime/cds/appcds/TestCommon.java

+3
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
import java.nio.file.FileSystem;
4343
import java.nio.file.FileSystems;
4444
import java.nio.file.Path;
45+
import java.nio.file.Paths;
4546
import java.text.SimpleDateFormat;
4647
import java.util.Arrays;
4748
import java.util.ArrayList;
@@ -357,6 +358,8 @@ private static void patchJarForDynamicDump(String cp) throws Exception {
357358
if (n > 0) {
358359
firstJar = firstJar.substring(0, n);
359360
}
361+
// get the real path in case the firstJar is specified as a relative path
362+
firstJar = Paths.get(firstJar).toRealPath().toString();
360363
String classDir = System.getProperty("test.classes");
361364
String expected = getOutputDir() + File.separator;
362365

0 commit comments

Comments
 (0)
Please sign in to comment.