Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 54484 invoked from network); 27 Jul 2008 16:57:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 27 Jul 2008 16:57:22 -0000 Received: (qmail 93688 invoked by uid 500); 27 Jul 2008 16:57:22 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 93670 invoked by uid 500); 27 Jul 2008 16:57:22 -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 93661 invoked by uid 99); 27 Jul 2008 16:57:22 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 27 Jul 2008 09:57:22 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 27 Jul 2008 16:56:35 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id B383C234C185 for ; Sun, 27 Jul 2008 09:56:31 -0700 (PDT) Message-ID: <98350626.1217177791734.JavaMail.jira@brutus> Date: Sun, 27 Jul 2008 09:56:31 -0700 (PDT) From: "Nathan Beyer (JIRA)" To: commits@harmony.apache.org Subject: [jira] Commented: (HARMONY-1684) [classlib][x-management] javax.management.AttributeList.add(0) throws unspecified RuntimeOperationsException 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-1684?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12617313#action_12617313 ] Nathan Beyer commented on HARMONY-1684: --------------------------------------- Senaka, what do you think changed from Java 5 to Java 6, those APIs looked the same to me. The only changes looks to be the addition of the type variable to Object and a few more methods being overridden in AttributeList. In any case, at some point this will be our issue because the MX4J project isn't active any longer, at least based on the mailing list activity and commit list activity. We'll have to pull this code into our repo at some point. > [classlib][x-management] javax.management.AttributeList.add(0) throws unspecified RuntimeOperationsException > ------------------------------------------------------------------------------------------------------------ > > Key: HARMONY-1684 > URL: https://issues.apache.org/jira/browse/HARMONY-1684 > Project: Harmony > Issue Type: Bug > Components: Classlib > Reporter: Nikolay Bannikov > > Problem details: > javax.management.AttributeList.add(0) throws unspecified RuntimeOperationsException while RI does not. > > Test for reproducing: > > import junit.framework.TestCase; > import javax.management.Attribute; > import javax.management.AttributeList; > import javax.management.RuntimeOperationsException; > public class Test extends TestCase { > public void testAdd_ArrayList() { > AttributeList att = new AttributeList(); > try { > att.add(0); > } catch ( RuntimeOperationsException e) { > fail("RuntimeOperationsException shouldn't be thrown"); > } > } > } > > Output on Sun 1.5: > ================== > java version "1.5.0_06" > Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_06-b05) > Java HotSpot(TM) Client VM (build 1.5.0_06-b05, mixed mode) > . > Time: 0 > OK (1 test) > > Output on Harmony: > ================== > Apache Harmony Launcher : (c) Copyright 1991, 2006 The Apache Software Foundation or its licensors, as applicable. > java version "1.5.0" pre-alpha : not complete or compatible > svn = r452710, (Oct 4 2006), Windows/ia32/msvc 1310, release build > http://incubator.apache.org/harmony > ..F > Time: 0.015 > There was 1 failure: > 1) testAdd_ArrayList(Test)junit.framework.AssertionFailedError: RuntimeOperationsException shouldn't be thrown > at Test.testAdd_ArrayList(Test.java:26) > at java.lang.reflect.AccessibleObject.invokeV(AccessibleObject.java:25) > FAILURES!!! > Tests run: 1, Failures: 1, Errors: 0 -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.