You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Jimmy, Jing Lv (JIRA)" <ji...@apache.org> on 2006/11/09 11:36:40 UTC

[jira] Updated: (HARMONY-2122) [classlib][luni] Calendar incorrectly handle new AM_PM value setting

     [ http://issues.apache.org/jira/browse/HARMONY-2122?page=all ]

Jimmy, Jing Lv updated HARMONY-2122:
------------------------------------

    Attachment: Harmony2122.diff

Hi,
    Would you please try this patch? Thanks!

Best Regards,
Jimmy

> [classlib][luni] Calendar incorrectly handle new AM_PM value setting
> --------------------------------------------------------------------
>
>                 Key: HARMONY-2122
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2122
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Robert Hu
>            Priority: Minor
>         Attachments: Harmony2122.diff
>
>
> Following code is to test whether the Calendar.set(int,int) method successfully set the new value of AM_PM.
>         
>         Calendar cal = Calendar.getInstance();
>         int oldValue = cal.get(Calendar.AM_PM);
>         int newValue = (oldValue == Calendar.AM)?Calendar.PM:Calendar.AM;
>         cal.set(Calendar.AM_PM, newValue);
>         newValue = cal.get(Calendar.AM_PM);
>         assertTrue(newValue!=oldValue);
> RI passes it
> Harmony failed it.
> The problem is maybe in the complete() method.

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