Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 64134 invoked from network); 15 Jan 2007 07:50:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 15 Jan 2007 07:50:49 -0000 Received: (qmail 38399 invoked by uid 500); 15 Jan 2007 07:50:55 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 38379 invoked by uid 500); 15 Jan 2007 07:50:55 -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 38314 invoked by uid 99); 15 Jan 2007 07:50:55 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 14 Jan 2007 23:50:55 -0800 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; Sun, 14 Jan 2007 23:50:47 -0800 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id CDCA57142A6 for ; Sun, 14 Jan 2007 23:50:27 -0800 (PST) Message-ID: <11794927.1168847427840.JavaMail.jira@brutus> Date: Sun, 14 Jan 2007 23:50:27 -0800 (PST) From: "Alexei Zakharov (JIRA)" To: commits@harmony.apache.org Subject: [jira] Assigned: (HARMONY-2799) [java][awt] Compatibility: java.awt.image.IndexColorModel.getDataElement() throws ArrayIndexOutOfBoundsException on RI and doesn't on Harmony In-Reply-To: <12490728.1166544261099.JavaMail.jira@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-2799?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alexei Zakharov reassigned HARMONY-2799: ---------------------------------------- Assignee: Alexei Zakharov > [java][awt] Compatibility: java.awt.image.IndexColorModel.getDataElement() throws ArrayIndexOutOfBoundsException on RI and doesn't on Harmony > --------------------------------------------------------------------------------------------------------------------------------------------- > > Key: HARMONY-2799 > URL: https://issues.apache.org/jira/browse/HARMONY-2799 > Project: Harmony > Issue Type: Bug > Components: Classlib > Reporter: Ilya Okomin > Assigned To: Alexei Zakharov > Priority: Minor > Attachments: IndexColorModel2799.patch, IndexColorModel2799Test.patch > > > java.awt.image.IndexColorModel.getDataElement() throws ArrayIndexOutOfBoundsException on RI and doesn't on Harmony. > Test to reproduce: > ---------------- test.java --------------- > import java.awt.image.IndexColorModel; > import junit.framework.TestCase; > import junit.textui.TestRunner; > public class test extends TestCase { > public static void main(String args[]) { > TestRunner.run(test.class); > } > public void testRun() { > int bits = 4; > int size = 166; > IndexColorModel localIndexColorModel = new IndexColorModel(bits, size, > new byte[size], new byte[size], new byte[size]); > int[] components = new int[] { 0, 0, 0, 0, 0, 0, 0 }; > int offset = 6; > try { > int returnValue = localIndexColorModel.getDataElement(components, offset); > fail("ArrayIndexOutOfBoundsException expected"); > } catch (ArrayIndexOutOfBoundsException unexpectedException) { > unexpectedException.printStackTrace(); > } > } > } > -------------------------------------------- > Output RI: > ======== > .java.lang.ArrayIndexOutOfBoundsException > at java.awt.image.IndexColorModel.getDataElement(IndexColorModel.java:1089) > at test.testRun(test.java:20) > at jrockit.reflect.VirtualNativeMethodInvoker.invoke(Ljava.lang.Object;[Ljava.lang.Object;)Ljava.lang.Object;(Unknown Source) > at java.lang.reflect.Method.invoke(Ljava.lang.Object;[Ljava.lang.Object;I)Ljava.lang.Object;(Unknown Source) > at junit.framework.TestCase.runTest(TestCase.java:154) > at junit.framework.TestCase.runBare(TestCase.java:127) > at junit.framework.TestResult$1.protect(TestResult.java:106) > at junit.framework.TestResult.runProtected(TestResult.java:124) > at junit.framework.TestResult.run(TestResult.java:109) > at junit.framework.TestCase.run(TestCase.java:118) > at junit.framework.TestSuite.runTest(TestSuite.java:208) > at junit.framework.TestSuite.run(TestSuite.java:203) > at junit.textui.TestRunner.doRun(TestRunner.java:116) > at junit.textui.TestRunner.doRun(TestRunner.java:109) > at junit.textui.TestRunner.run(TestRunner.java:72) > at junit.textui.TestRunner.run(TestRunner.java:57) > at test.main(test.java:9) > Time: 0,05 > OK (1 test) > Output Harmony: > ============== > .F > Time: 0.07 > There was 1 failure: > 1) testRun(test)junit.framework.AssertionFailedError: ArrayIndexOutOfBoundsException expected > at test.testRun(test.java:21) > at java.lang.reflect.VMReflection.invokeMethod(Native Method) > at test.main(test.java:9) > FAILURES!!! > Tests run: 1, Failures: 1, Errors: 0 -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira