Hi Weijun, Please review this simple test fix. There is a typo in the test. The issue is exposed after the fix of JDK-8023881.
webrev: http://cr.openjdk.java.net/~xuelei/8024068/webrev.00/ This bug may not have been published to bugs.sun.com. The typo and the patch look like: String[] illegalNames = { - "example\u3003\u3002com", + "example\u3002\u3002com", "example..com", "com\u3002", "com.", "." }; "\u3003" now is acceptable as a Unicode code point, and then result in test failure. Thanks, Xuelei