You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Alexey Petrenko (JIRA)" <ji...@apache.org> on 2006/12/07 13:05:23 UTC

[jira] Commented: (HARMONY-1351) [classlib][text] compatibility: NumberFormat.getCurrency() returns string on RI and null on Harmony for incorrect locale

    [ http://issues.apache.org/jira/browse/HARMONY-1351?page=comments#action_12456379 ] 
            
Alexey Petrenko commented on HARMONY-1351:
------------------------------------------

Guys,

could you please provide a unit test?

> [classlib][text] compatibility: NumberFormat.getCurrency() returns string on RI and null on Harmony for incorrect locale
> ------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-1351
>                 URL: http://issues.apache.org/jira/browse/HARMONY-1351
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Vladimir Ivanov
>            Priority: Minor
>         Attachments: DecimalFormat.patch
>
>
> The method NumberFormat.getCurrency() for incorrect locale returns string "XXX" on RI and null on Harmony.
> The spec says: "returns: the currency used by this number format, or null" so it may be 'non-bug dif..'.
> ============== test.java =====================
> import java.text.*;
> import java.util.Locale;
> public class test {
>     public static void main(String[] args) {
>         Locale l = new Locale("QWERTY");
>         System.out.println("res = " + NumberFormat.getPercentInstance(l).getCurrency());
>         
>         l = new Locale("X", "Y");
>         System.out.println("res = " + NumberFormat.getPercentInstance(l).getCurrency());
>     }
> }
> ==========================================
> 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)
> res = XXX
> res = XXX
> 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))
> res = XXX
> res = XXX
> C:\tmp\tmp17>C:\harmony\classlib1.5\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.
> res = null
> res = null
> C:\tmp\tmp17>C:\harmony\drlvm1.5\build\win_ia32_msvc_debug\deploy\jre\bin\java -Dvm.assert_dialog=false -cp . -showversion test
> java version "1.5.0"
> pre-alpha : not complete or compatible
> svn = r438744, (Aug 31 2006), Windows/ia32/msvc 1310, debug build
> http://incubator.apache.org/harmony
> res = null
> res = null

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