Return-Path: Delivered-To: apmail-incubator-harmony-dev-archive@www.apache.org Received: (qmail 86390 invoked from network); 26 Jan 2006 09:59:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 26 Jan 2006 09:59:36 -0000 Received: (qmail 72354 invoked by uid 500); 26 Jan 2006 09:59:31 -0000 Delivered-To: apmail-incubator-harmony-dev-archive@incubator.apache.org Received: (qmail 72274 invoked by uid 500); 26 Jan 2006 09:59:31 -0000 Mailing-List: contact harmony-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: harmony-dev@incubator.apache.org Delivered-To: mailing list harmony-dev@incubator.apache.org Received: (qmail 72233 invoked by uid 99); 26 Jan 2006 09:59:30 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [192.87.106.226] (HELO ajax.apache.org) (192.87.106.226) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 26 Jan 2006 01:59:30 -0800 Received: from ajax.apache.org (ajax.apache.org [127.0.0.1]) by ajax.apache.org (Postfix) with ESMTP id 54B71C9 for ; Thu, 26 Jan 2006 10:59:09 +0100 (CET) Message-ID: <1203672963.1138269549309.JavaMail.jira@ajax.apache.org> Date: Thu, 26 Jan 2006 10:59:09 +0100 (CET) From: "Vladimir Ivanov (JIRA)" To: harmony-dev@incubator.apache.org Subject: [jira] Created: (HARMONY-49) java.io.PushBackInputStream throws ArrayIndexOutOfBoundsException instead of IOException MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N java.io.PushBackInputStream throws ArrayIndexOutOfBoundsException instead of IOException ---------------------------------------------------------------------------------------- Key: HARMONY-49 URL: http://issues.apache.org/jira/browse/HARMONY-49 Project: Harmony Type: Bug Components: Classlib Reporter: Vladimir Ivanov Priority: Minor java.io.PushBackInputStream throws ArrayIndexOutOfBoundsException if array length is not enough. Specification says it should be IOException. Code to reproduce: import java.io.*; public class test29 { public static void main(String args[]) { try { new PushbackInputStream( new ByteArrayInputStream(new byte[] { 0 }), 2).unread(new byte[1], 0, 5); } catch (IOException e) { System.out.println("PASSED: "+ e); } catch (Throwable e) { System.out.println("FAILED: " + e); } } } Steps to Reproduce: 1. Build Harmony (check-out on 2006-01-25) j2se subset as described in README.txt. 2. Compile test29.java using BEA 1.4 javac > javac -d . test29.java 3. Run java using compatible VM (J9) > java -showversion test29 Output: C:\tmp\tmp17>C:\jrockit-j2sdk1.4.2_04\bin\java.exe -showversion test29 java version "1.4.2_04" Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_04-b05) BEA WebLogic JRockit(TM) 1.4.2_04 JVM (build ari-31788-20040616-1132-win-ia32, Native Threads, GC strategy: parallel) PASSED: java.io.IOException: Push back buffer is full C:\tmp\tmp17>C:\harmony\trunk\deploy\jre\bin\java -showversion test29 java version 1.4.2 (subset) (c) Copyright 1991, 2005 The Apache Software Foundation or its licensors, as applicable. FAILED: java.lang.ArrayIndexOutOfBoundsException C:\tmp\tmp17> junit test: ------------------------ PushBackInputStreamTest.java ---------------------------------------------- import java.io.*; import junit.framework.*; public class PushBackInputStreamTest extends TestCase { public void testUnread() { try { new PushbackInputStream( new ByteArrayInputStream(new byte[] { 0 }), 2).unread(new byte[1], 0, 5); } catch (IOException e) { } catch (Throwable e) { fail("unexpected exception: " + e); } } public static void main(String[] args) { junit.textui.TestRunner.run(PushBackInputStreamTest.class); } } -- 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