Hello,
Please review this fix for
javax/security/auth/Subject/doAs/NestedActions.java test.
The test runs java in a separate process. It fails if multiple java
options are passed because ProcessBuilder expects each parameter to be
put in to a separate array element, but the test didn't do that. I
updated the test to split java option string, and put each option in a
separate array element.
Bug: https://bugs.openjdk.java.net/browse/JDK-8076486
Webrev: http://cr.openjdk.java.net/~asmotrak/8076486/webrev.00/
Artem