Hi All, Kindly review the fix for JDK9.
Bug: https://bugs.openjdk.java.net/browse/JDK-8165555 <https://bugs.openjdk.java.net/browse/JDK-8165555> Webrev: http://cr.openjdk.java.net/~mhalder/8165555/webrev.00/ <http://cr.openjdk.java.net/~mhalder/8165555/webrev.00/> Issue: [macosx] VM crashes on second attempt to execute JCK interactive tests that use Robot (single JVM, agent) Cause: While executing the JCK test for the second time the robot was getting initialised once again and old instance of CRobotKeyCodeMapping was not available. Crash was observed while trying to access invalid instance of CRobotKeyCodeMapping. Fix: A new instance of CRobotKeyCodeMapping is created when robot is initialised. Regards, Manajit