< prev index next >

test/jdk/tools/jpackage/helpers/JPackagePath.java

Print this page

        

*** 218,227 **** --- 218,232 ---- public static String getWinInstalledApp(String testName) { return getWinProgramFiles() + File.separator + testName + File.separator + testName + ".exe"; } + public static String getWinInstalledApp(String installDir, String testName) { + return getWinProgramFiles() + File.separator + installDir + File.separator + + testName + ".exe"; + } + public static String getOSXInstalledApp(String testName) { return File.separator + "Applications" + File.separator + testName + ".app" + File.separator + "Contents" + File.separator + "MacOS" + File.separator + testName; }
< prev index next >