Thanks Lois, for the review.
Harold
On 9/8/2016 1:12 PM, Lois Foltan wrote:
On 9/8/2016 9:23 AM, harold seigel wrote:
Hi,
Please review this fix for JDK-8165634. The fix changes the
--add-modules option from being a 'last one wins' option to a
cumulative one. With this change, if multiple --add-modules options
are specified, the VM accumulates all the options' values, instead of
ignoring all but the last option's value. The --add-modules values
are reported back to the JDK as properties using the
Arguments::create_numbered_property() function.
JBS Bug: https://bugs.openjdk.java.net/browse/JDK-8165634
Open webrevs:
http://cr.openjdk.java.net/~hseigel/bug_8165634.hs/
http://cr.openjdk.java.net/~hseigel/bug_8165634.jdk/
The fix was tested with the JCK Lang and VM tests, the hotpot, and
java/lang, java/util and other JTreg tests, the RBT tier2 tests, and
the NSK non-colocated quick tests.
The JDK changes were done by Mandy Chung (mchung).
Hi Harold,
Looks good, thanks for removing
Arguments::append_to_addmods_property! One minor comment, shouldn't
--patch-modules also be in the unsupported_options list for
Arguments::check_unsupported_dumping_properties?
Thanks,
Lois
Thanks, Harold