nashorn/test/script/nosecurity/JDK-8050964.js
changeset 31491 bba9c22de331
parent 30698 2d50f5564f7b
--- a/nashorn/test/script/nosecurity/JDK-8050964.js	Thu Jul 02 10:55:35 2015 +0200
+++ b/nashorn/test/script/nosecurity/JDK-8050964.js	Thu Jul 02 11:09:20 2015 +0200
@@ -46,10 +46,14 @@
     nashornJar = new File(".", nashornJar);
 }
 
+var os = System.getProperty("os.name"),
+    win = os.startsWith("Windows"),
+    jdepsName = "jdeps" + (win ? ".exe" : "");
+
 var javahome = System.getProperty("java.home");
-var jdepsPath = javahome + "/../bin/jdeps".replace(/\//g, File.separator);
+var jdepsPath = javahome + "/../bin/".replace(/\//g, File.separator) + jdepsName;
 if (! new File(jdepsPath).isFile()) {
-    jdepsPath = javahome + "/bin/jdeps".replace(/\//g, File.separator);
+    jdepsPath = javahome + "/bin/".replace(/\//g, File.separator) + jdepsName;
 }
 
 // run jdep on nashorn.jar - only summary but print profile info