Hi
the revokeall.exe is not executable on WXP/Cygwin which leads to the error
Z:/JDK/jdk8/jdk/test/sun/management/jmxremote/bootstrap/GeneratePropertyPassword.sh:
line 107:
Z:/JDK/jdk8/jdk/test/sun/management/jmxremote/bootstrap/../../windows/revokeall.exe:
Permission denied
Thus, I would suggest to add a chmod ug+x $REVOKEALL in
GeneratePropertyPassword.sh
as
diff --git a/test/sun/management/jmxremote/bootstrap/GeneratePropertyPassword.sh
b/test/sun/manageme
nt/jmxremote/bootstrap/GeneratePropertyPassword.sh
--- a/test/sun/management/jmxremote/bootstrap/GeneratePropertyPassword.sh
+++ b/test/sun/management/jmxremote/bootstrap/GeneratePropertyPassword.sh
@@ -74,6 +74,7 @@
echo "$REVOKEALL missing"
exit 1
fi
+ chmod ug+x $REVOKEALL
fi
Francis