--- old/test/testlibrary/jdk/test/lib/FileInstaller.java 2016-05-31 03:03:35.000000000 +0300 +++ new/test/testlibrary/jdk/test/lib/FileInstaller.java 2016-05-31 03:03:35.000000000 +0300 @@ -45,8 +45,8 @@ if (args.length != 2) { throw new IllegalArgumentException("Unexpected number of arguments for file copy"); } - Path src = Paths.get(Utils.TEST_SRC, args[0]); - Path dst = Paths.get(args[1]); + Path src = Paths.get(Utils.TEST_SRC, args[0]).toAbsolutePath(); + Path dst = Paths.get(args[1]).toAbsolutePath(); if (src.toFile().exists()) { if (src.toFile().isDirectory()) { Files.walkFileTree(src, new CopyFileVisitor(src, dst));