Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 53687 invoked from network); 13 Mar 2007 07:42:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 13 Mar 2007 07:42:30 -0000 Received: (qmail 76777 invoked by uid 500); 13 Mar 2007 07:42:38 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 76751 invoked by uid 500); 13 Mar 2007 07:42:38 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 76742 invoked by uid 99); 13 Mar 2007 07:42:38 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Mar 2007 00:42:38 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Mar 2007 00:42:29 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 7C0CF714074 for ; Tue, 13 Mar 2007 00:42:09 -0700 (PDT) Message-ID: <17477421.1173771729505.JavaMail.jira@brutus> Date: Tue, 13 Mar 2007 00:42:09 -0700 (PDT) From: "Ruth Cao (JIRA)" To: commits@harmony.apache.org Subject: [jira] Commented: (HARMONY-3333) [classlib][luni]java.net.SocketPermission considers port even if the action is only 'resolve' In-Reply-To: <17576367.1173325884581.JavaMail.root@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HARMONY-3333?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12480298 ] Ruth Cao commented on HARMONY-3333: ----------------------------------- Thank you very much, Richard. The fix looks fine at r517575. > [classlib][luni]java.net.SocketPermission considers port even if the action is only 'resolve' > --------------------------------------------------------------------------------------------- > > Key: HARMONY-3333 > URL: https://issues.apache.org/jira/browse/HARMONY-3333 > Project: Harmony > Issue Type: Bug > Components: Classlib > Reporter: Ruth Cao > Assigned To: Richard Liang > Attachments: Harmony-3333.diff > > > The following test case[1] fails on Harmony while passes on RI. It is due to SocketPermission considers port even if the action is only 'resolve' in Harmony. I'll upload a patch soon. Thanks. > [1] public void test_equalsLjava_lang_Object() { > SocketPermission sp1 = new SocketPermission("TEST1.com:333", "resolve"); > SocketPermission sp2 = new SocketPermission("test1.com:444", "resolve"); > assertTrue("Different cases should be equal", sp1.equals(sp2)); > } -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.