OpenJDK / portola / portola
changeset 27811:e415087c78aa
8062638: RuntimeException when run command from js with -scripting on Cygwin
Reviewed-by: hannesw, lagergren
author | slugovoy |
---|---|
date | Mon, 17 Nov 2014 14:57:28 +0300 |
parents | 82f4cb44b2d7 |
children | c2d0feb951e3 |
files | nashorn/test/script/nosecurity/JDK-8050964.js nashorn/test/script/nosecurity/JDK-8055034.js |
diffstat | 2 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/nashorn/test/script/nosecurity/JDK-8050964.js Wed Jul 05 20:07:55 2017 +0200 +++ b/nashorn/test/script/nosecurity/JDK-8050964.js Mon Nov 17 14:57:28 2014 +0300 @@ -50,6 +50,7 @@ var jdepsPath = javahome + "/../bin/jdeps".replaceAll(/\//g, File.separater); // run jdep on nashorn.jar - only summary but print profile info +$ENV.PWD=System.getProperty("user.dir") // to avoid RE on Cygwin `${jdepsPath} -s -P ${nashornJar.absolutePath}` // check for "(compact1)" in output from jdep tool
--- a/nashorn/test/script/nosecurity/JDK-8055034.js Wed Jul 05 20:07:55 2017 +0200 +++ b/nashorn/test/script/nosecurity/JDK-8055034.js Mon Nov 17 14:57:28 2014 +0300 @@ -49,7 +49,7 @@ var jjsCmd = javahome + "/../bin/jjs"; jjsCmd += " -J-Djava.ext.dirs=" + nashornJarDir; jjsCmd = jjsCmd.toString().replaceAll(/\//g, File.separater); - +$ENV.PWD=System.getProperty("user.dir") // to avoid RE on Cygwin $EXEC(jjsCmd, "var x = Object.create(null);\nx;\nprint('PASSED');\nexit(0)"); // $ERR has all interactions including prompts! Just check for error substring.