Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 39747 invoked from network); 25 Jan 2007 12:26:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 25 Jan 2007 12:26:10 -0000 Received: (qmail 79872 invoked by uid 500); 25 Jan 2007 12:26:17 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 79750 invoked by uid 500); 25 Jan 2007 12:26:16 -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 79741 invoked by uid 99); 25 Jan 2007 12:26:16 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 25 Jan 2007 04:26:16 -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; Thu, 25 Jan 2007 04:26:09 -0800 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 85B207142B5 for ; Thu, 25 Jan 2007 04:25:49 -0800 (PST) Message-ID: <11980465.1169727949455.JavaMail.jira@brutus> Date: Thu, 25 Jan 2007 04:25:49 -0800 (PST) From: "Andrey Pavlenko (JIRA)" To: commits@harmony.apache.org Subject: [jira] Commented: (HARMONY-2656) [classlib][awt] Compatibility: java.awt.AreaAveragingScaleFilter.setPixels() throws different Exceptions on RI and Harmony when the height is negative In-Reply-To: <29385499.1165940001047.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-2656?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12467345 ] Andrey Pavlenko commented on HARMONY-2656: ------------------------------------------ The issue is in the negative height passed to the AreaAveragingScaleFilter() constructor. RI does not throw any Exceptions in this case, but I don't think it's a valid behavior. I think this issue should be closed as non-bug diff. > [classlib][awt] Compatibility: java.awt.AreaAveragingScaleFilter.setPixels() throws different Exceptions on RI and Harmony when the height is negative > ------------------------------------------------------------------------------------------------------------------------------------------------------ > > Key: HARMONY-2656 > URL: https://issues.apache.org/jira/browse/HARMONY-2656 > Project: Harmony > Issue Type: Bug > Components: Classlib > Reporter: Ilya Okomin > Priority: Minor > > java.awt.AreaAveragingScaleFilter.setPixels(int x, int y, int w, int h, ColorModel model, int[] pixels, int off, int scansize) > on Harmony throws NegativeArraySizeException with incorrect height parmeters. RI throws IndexOutOfBoundsException. > See test case to reproduce: > ---------- test.java ----------- > import java.awt.image.AreaAveragingScaleFilter; > import java.awt.image.ColorModel; > 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 width = 143; > int height = -1; > int x = 1; > int y = 1; > int w = 1; > int h = 1; > int[] pixels = new int[] {}; > AreaAveragingScaleFilter locAASF = new AreaAveragingScaleFilter(width, > height); > int off = 2; > int scansize = 1; > try { > locAASF.setPixels(x, y, w, h, (ColorModel) null, pixels, off, > scansize); > fail("IndexOutOfBoundsException expected"); > } catch (IndexOutOfBoundsException e) { > // expected > } > } > } > -------------------------- > Output RI: > ======== > . > Time: 0,1 > OK (1 test) > Output Harmony: > ============= > .E > Time: 0.04 > There was 1 error: > 1) testRun(test)java.lang.NegativeArraySizeException > at java.awt.image.ReplicateScaleFilter.initArrays(ReplicateScaleFilter.java:172) > at java.awt.image.ReplicateScaleFilter.setPixels(ReplicateScaleFilter.java:82) > at java.awt.image.AreaAveragingScaleFilter.setPixels(AreaAveragingScaleFilter.java:55) > at test.testRun(test.java:25) > at java.lang.reflect.VMReflection.invokeMethod(Native Method) > at test.main(test.java:10) > FAILURES!!! > Tests run: 1, Failures: 0, Errors: 1 -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.