We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c70bf3 commit d6d6eb4Copy full SHA for d6d6eb4
test/hotspot/jtreg/runtime/cds/appcds/TestCommon.java
@@ -42,6 +42,7 @@
42
import java.nio.file.FileSystem;
43
import java.nio.file.FileSystems;
44
import java.nio.file.Path;
45
+import java.nio.file.Paths;
46
import java.text.SimpleDateFormat;
47
import java.util.Arrays;
48
import java.util.ArrayList;
@@ -357,6 +358,8 @@ private static void patchJarForDynamicDump(String cp) throws Exception {
357
358
if (n > 0) {
359
firstJar = firstJar.substring(0, n);
360
}
361
+ // get the real path in case the firstJar is specified as a relative path
362
+ firstJar = Paths.get(firstJar).toRealPath().toString();
363
String classDir = System.getProperty("test.classes");
364
String expected = getOutputDir() + File.separator;
365
0 commit comments