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/07/10 07:49:35 UTC

[jira] Commented: (HARMONY-784) [classlib][math] compatibility: no NPE for java.math.BigDecimal((BigInteger) null)

    [ http://issues.apache.org/jira/browse/HARMONY-784?page=comments#action_12419962 ] 

Vladimir Ivanov commented on HARMONY-784:
-----------------------------------------

verified, thanks

> [classlib][math] compatibility: no NPE for java.math.BigDecimal((BigInteger) null)
> ----------------------------------------------------------------------------------
>
>          Key: HARMONY-784
>          URL: http://issues.apache.org/jira/browse/HARMONY-784
>      Project: Harmony
>         Type: Bug

>   Components: Classlib
>     Reporter: Vladimir Ivanov
>     Assignee: Tim Ellison
>  Attachments: BigDecimal.patch, BigDecimalConstructorsTest.patch
>
> The Harmony method java.math.BigDecimal((BigInteger) null) doesn't throw NPE while RI do it.
> Note1: NPE is thrown for java.math.BigDecimal((BigInteger) null).toString()
> Note2: BEA and SUN have different behavior
> =============== test.java ==========================
> import java.math.*;
> public class test {
> 	public static void main(String args[] ) {
>                          	try {
> 			BigDecimal bd = new BigDecimal((BigInteger) null);
> 			if (bd != null)
> 				System.out.println("Failed1");
> 			else
> 				System.out.println("Failed2");
> 		} catch (NullPointerException e) {
> 			System.out.println("Passed");
> 			e.printStackTrace();
>                }
>         }
> }
> ================================================
> Output:
> C:\tmp\tmp17>C:\jdk1.5.0_06\bin\java.exe -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)
> Passed
> java.lang.NullPointerException
>         at java.math.BigDecimal.<init>(BigDecimal.java:791)
>         at test.main(test.java:6)
> C:\tmp\tmp17>C:\jrockit-jdk1.5.0-windows-ia32\bin\java.exe -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))
> Failed1
> C:\tmp\tmp17>C:\harmony\trunk_0427\deploy\jdk\jre\bin\java.exe -showversion test
> java version 1.5 (subset)
> (c) Copyright 1991, 2006 The Apache Software Foundation or its licensors, as applicable.
> Failed1

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