[classlib][luni] java.net.InetSocketAddress.getHostName() returns null if it is created by
ip address.
------------------------------------------------------------------------------------------------------
Key: HARMONY-1042
URL: http://issues.apache.org/jira/browse/HARMONY-1042
Project: Harmony
Issue Type: Bug
Components: Classlib
Reporter: Andrew Zhang
java.net.InetSocketAddress.getHostName() returns null if it is created by ip address.
Following test reproduces the bug:
public void test_Constructor() throws Exception {
InetSocketAddress address = new InetSocketAddress("127.0.0.1", 0);
assertNotNull(address.getHostName());
}
The test passes against RI while fails against Harmony.
I'll upload a patch to fix the problem soon.
Best regards,
Andrew
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
|