You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Vladimir Ivanov (JIRA)" <ji...@apache.org> on 2006/08/08 09:27:14 UTC

[jira] Created: (HARMONY-1095) [classlib][io] compatibility: RI throws OOME while HARMONY throws NPE

[classlib][io] compatibility: RI throws OOME while HARMONY throws NPE
---------------------------------------------------------------------

                 Key: HARMONY-1095
                 URL: http://issues.apache.org/jira/browse/HARMONY-1095
             Project: Harmony
          Issue Type: Bug
          Components: Non-bug differences from RI
            Reporter: Vladimir Ivanov
            Priority: Minor
         Attachments: CharArrayWriter.patch

The Harmony method new CharArrayWriter().write(String, int, Integer.MAX_VALUE) throws NPE while RI throws OOME.
Seems, it is RI bug.
But for Harmony message or exception should be fixed.

======================= test.java ===================
import java.io.CharArrayWriter;

public class test {
    public static void main(String args[]) {
        new CharArrayWriter().write((String) null, 4, Integer.MAX_VALUE);
    }
}
=================================================

Output:
C:\tmp\tmp17>C:\jdk1.5.0_06\bin\java.exe -cp . -showversion test
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)

Exception in thread "main" java.lang.OutOfMemoryError: Requested array size exceeds VM limit

C:\tmp\tmp17>C:\jrockit-jdk1.5.0-windows-ia32\bin\java.exe -cp . -showversion test
java version "1.5.0"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-b64)
BEA WebLogic JRockit(R) (build dra-38972-20041208-2001-win-ia32, R25.0.0-75, GC: System optimized over throughput (initial strategy singleparpar))

OutOfMemoryError
-------end of stacktrace

C:\tmp\tmp17>C:\harmony\trunk_0427\deploy\jdk\jre\bin\java.exe -cp . -showversion test
java version 1.5 (subset)

(c) Copyright 1991, 2006 The Apache Software Foundation or its licensors, as applicable.
Exception in thread "main" java.lang.NullPointerException: seek position is negative
        at java.io.CharArrayWriter.write(CharArrayWriter.java:201)
        at test.main(test.java:5)

-- 
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

        

[jira] Commented: (HARMONY-1095) [classlib][io] compatibility: RI throws OOME while HARMONY throws NPE

Posted by "Vladimir Ivanov (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/HARMONY-1095?page=comments#action_12426820 ] 
            
Vladimir Ivanov commented on HARMONY-1095:
------------------------------------------

verified, thanks

> [classlib][io] compatibility: RI throws OOME while HARMONY throws NPE
> ---------------------------------------------------------------------
>
>                 Key: HARMONY-1095
>                 URL: http://issues.apache.org/jira/browse/HARMONY-1095
>             Project: Harmony
>          Issue Type: Bug
>          Components: Non-bug differences from RI
>            Reporter: Vladimir Ivanov
>         Assigned To: Paulex Yang
>            Priority: Minor
>         Attachments: CharArrayWriter.patch
>
>
> The Harmony method new CharArrayWriter().write(String, int, Integer.MAX_VALUE) throws NPE while RI throws OOME.
> Seems, it is RI bug.
> But for Harmony message or exception should be fixed.
> ======================= test.java ===================
> import java.io.CharArrayWriter;
> public class test {
>     public static void main(String args[]) {
>         new CharArrayWriter().write((String) null, 4, Integer.MAX_VALUE);
>     }
> }
> =================================================
> Output:
> C:\tmp\tmp17>C:\jdk1.5.0_06\bin\java.exe -cp . -showversion test
> 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)
> Exception in thread "main" java.lang.OutOfMemoryError: Requested array size exceeds VM limit
> C:\tmp\tmp17>C:\jrockit-jdk1.5.0-windows-ia32\bin\java.exe -cp . -showversion test
> java version "1.5.0"
> Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-b64)
> BEA WebLogic JRockit(R) (build dra-38972-20041208-2001-win-ia32, R25.0.0-75, GC: System optimized over throughput (initial strategy singleparpar))
> OutOfMemoryError
> -------end of stacktrace
> C:\tmp\tmp17>C:\harmony\trunk_0427\deploy\jdk\jre\bin\java.exe -cp . -showversion test
> java version 1.5 (subset)
> (c) Copyright 1991, 2006 The Apache Software Foundation or its licensors, as applicable.
> Exception in thread "main" java.lang.NullPointerException: seek position is negative
>         at java.io.CharArrayWriter.write(CharArrayWriter.java:201)
>         at test.main(test.java:5)

-- 
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

        

[jira] Assigned: (HARMONY-1095) [classlib][io] compatibility: RI throws OOME while HARMONY throws NPE

Posted by "Paulex Yang (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-1095?page=all ]

Paulex Yang reassigned HARMONY-1095:
------------------------------------

    Assignee: Paulex Yang

> [classlib][io] compatibility: RI throws OOME while HARMONY throws NPE
> ---------------------------------------------------------------------
>
>                 Key: HARMONY-1095
>                 URL: http://issues.apache.org/jira/browse/HARMONY-1095
>             Project: Harmony
>          Issue Type: Bug
>          Components: Non-bug differences from RI
>            Reporter: Vladimir Ivanov
>         Assigned To: Paulex Yang
>            Priority: Minor
>         Attachments: CharArrayWriter.patch
>
>
> The Harmony method new CharArrayWriter().write(String, int, Integer.MAX_VALUE) throws NPE while RI throws OOME.
> Seems, it is RI bug.
> But for Harmony message or exception should be fixed.
> ======================= test.java ===================
> import java.io.CharArrayWriter;
> public class test {
>     public static void main(String args[]) {
>         new CharArrayWriter().write((String) null, 4, Integer.MAX_VALUE);
>     }
> }
> =================================================
> Output:
> C:\tmp\tmp17>C:\jdk1.5.0_06\bin\java.exe -cp . -showversion test
> 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)
> Exception in thread "main" java.lang.OutOfMemoryError: Requested array size exceeds VM limit
> C:\tmp\tmp17>C:\jrockit-jdk1.5.0-windows-ia32\bin\java.exe -cp . -showversion test
> java version "1.5.0"
> Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-b64)
> BEA WebLogic JRockit(R) (build dra-38972-20041208-2001-win-ia32, R25.0.0-75, GC: System optimized over throughput (initial strategy singleparpar))
> OutOfMemoryError
> -------end of stacktrace
> C:\tmp\tmp17>C:\harmony\trunk_0427\deploy\jdk\jre\bin\java.exe -cp . -showversion test
> java version 1.5 (subset)
> (c) Copyright 1991, 2006 The Apache Software Foundation or its licensors, as applicable.
> Exception in thread "main" java.lang.NullPointerException: seek position is negative
>         at java.io.CharArrayWriter.write(CharArrayWriter.java:201)
>         at test.main(test.java:5)

-- 
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

        

[jira] Resolved: (HARMONY-1095) [classlib][io] compatibility: RI throws OOME while HARMONY throws NPE

Posted by "Paulex Yang (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-1095?page=all ]

Paulex Yang resolved HARMONY-1095.
----------------------------------

    Resolution: Fixed

Vladimir, patch applied at revision r429670, thanks a lot for this enhancement, please verify that the problem is fully fixed as you expected.


> [classlib][io] compatibility: RI throws OOME while HARMONY throws NPE
> ---------------------------------------------------------------------
>
>                 Key: HARMONY-1095
>                 URL: http://issues.apache.org/jira/browse/HARMONY-1095
>             Project: Harmony
>          Issue Type: Bug
>          Components: Non-bug differences from RI
>            Reporter: Vladimir Ivanov
>         Assigned To: Paulex Yang
>            Priority: Minor
>         Attachments: CharArrayWriter.patch
>
>
> The Harmony method new CharArrayWriter().write(String, int, Integer.MAX_VALUE) throws NPE while RI throws OOME.
> Seems, it is RI bug.
> But for Harmony message or exception should be fixed.
> ======================= test.java ===================
> import java.io.CharArrayWriter;
> public class test {
>     public static void main(String args[]) {
>         new CharArrayWriter().write((String) null, 4, Integer.MAX_VALUE);
>     }
> }
> =================================================
> Output:
> C:\tmp\tmp17>C:\jdk1.5.0_06\bin\java.exe -cp . -showversion test
> 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)
> Exception in thread "main" java.lang.OutOfMemoryError: Requested array size exceeds VM limit
> C:\tmp\tmp17>C:\jrockit-jdk1.5.0-windows-ia32\bin\java.exe -cp . -showversion test
> java version "1.5.0"
> Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-b64)
> BEA WebLogic JRockit(R) (build dra-38972-20041208-2001-win-ia32, R25.0.0-75, GC: System optimized over throughput (initial strategy singleparpar))
> OutOfMemoryError
> -------end of stacktrace
> C:\tmp\tmp17>C:\harmony\trunk_0427\deploy\jdk\jre\bin\java.exe -cp . -showversion test
> java version 1.5 (subset)
> (c) Copyright 1991, 2006 The Apache Software Foundation or its licensors, as applicable.
> Exception in thread "main" java.lang.NullPointerException: seek position is negative
>         at java.io.CharArrayWriter.write(CharArrayWriter.java:201)
>         at test.main(test.java:5)

-- 
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

        

[jira] Closed: (HARMONY-1095) [classlib][io] compatibility: RI throws OOME while HARMONY throws NPE

Posted by "Paulex Yang (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-1095?page=all ]

Paulex Yang closed HARMONY-1095.
--------------------------------


Verified by Vladimir.

> [classlib][io] compatibility: RI throws OOME while HARMONY throws NPE
> ---------------------------------------------------------------------
>
>                 Key: HARMONY-1095
>                 URL: http://issues.apache.org/jira/browse/HARMONY-1095
>             Project: Harmony
>          Issue Type: Bug
>          Components: Non-bug differences from RI
>            Reporter: Vladimir Ivanov
>         Assigned To: Paulex Yang
>            Priority: Minor
>         Attachments: CharArrayWriter.patch
>
>
> The Harmony method new CharArrayWriter().write(String, int, Integer.MAX_VALUE) throws NPE while RI throws OOME.
> Seems, it is RI bug.
> But for Harmony message or exception should be fixed.
> ======================= test.java ===================
> import java.io.CharArrayWriter;
> public class test {
>     public static void main(String args[]) {
>         new CharArrayWriter().write((String) null, 4, Integer.MAX_VALUE);
>     }
> }
> =================================================
> Output:
> C:\tmp\tmp17>C:\jdk1.5.0_06\bin\java.exe -cp . -showversion test
> 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)
> Exception in thread "main" java.lang.OutOfMemoryError: Requested array size exceeds VM limit
> C:\tmp\tmp17>C:\jrockit-jdk1.5.0-windows-ia32\bin\java.exe -cp . -showversion test
> java version "1.5.0"
> Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-b64)
> BEA WebLogic JRockit(R) (build dra-38972-20041208-2001-win-ia32, R25.0.0-75, GC: System optimized over throughput (initial strategy singleparpar))
> OutOfMemoryError
> -------end of stacktrace
> C:\tmp\tmp17>C:\harmony\trunk_0427\deploy\jdk\jre\bin\java.exe -cp . -showversion test
> java version 1.5 (subset)
> (c) Copyright 1991, 2006 The Apache Software Foundation or its licensors, as applicable.
> Exception in thread "main" java.lang.NullPointerException: seek position is negative
>         at java.io.CharArrayWriter.write(CharArrayWriter.java:201)
>         at test.main(test.java:5)

-- 
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