You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Svetlana Samoilenko (JIRA)" <ji...@apache.org> on 2006/10/05 09:36:22 UTC

[jira] Updated: (HARMONY-1703) [classlib][sql] The behavior of java.sql.TimeStamp.compareTo(TimeStamp) is different from RI

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

Svetlana Samoilenko updated HARMONY-1703:
-----------------------------------------

    Attachment: TimeStampTestPatch.txt

test

> [classlib][sql] The behavior of java.sql.TimeStamp.compareTo(TimeStamp) is different from RI
> --------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-1703
>                 URL: http://issues.apache.org/jira/browse/HARMONY-1703
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Svetlana Samoilenko
>         Attachments: TimeStampTestPatch.txt
>
>
> Description: 
> The behavior of java.sql.TimeStamp.compareTo(TimeStamp) is different from RI.
> RI returns value 1 while Harmony returns -1.
> Test for reproducing: 
> import junit.framework.TestCase;
> import java.sql.Timestamp;
> public class test extends TestCase  {          
>     public void testCompareTo_Timestamp() {                               
>        Timestamp obj1 = new Timestamp(-1L);
>        obj1.setTime(Long.MIN_VALUE);
>       Timestamp obj2 = new Timestamp(-1L);
>        obj2.setDate(Integer.MIN_VALUE);
>       assertEquals(1,obj1.compareTo(obj2));                                        
>     } 
> }
> Output on Sun 1.5: 
> ================== 
> 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) 
> . 
> Time: 0 
> OK (1 test) 
> Output on Harmony: 
> ================== 
> Apache Harmony Launcher : (c) Copyright 1991, 2006 The Apache Software Foundation or its licensors, as applicable. 
> java version "1.5.0" pre-alpha : not complete or compatible 
> svn = r452710, (Oct 4 2006), Windows/ia32/msvc 1310, release build 
> http://incubator.apache.org/harmony 
> Time: 0,015
> There was 1 failure:
> 1) testCompareTo_Timestamp(test)junit.framework.AssertionFailedError: expected:<1> but was:<-1>
>         at test.testCompareTo_Timestamp(test.java:10)
>         at java.lang.reflect.AccessibleObject.invokeV(AccessibleObject.java:25)
> FAILURES!!!
> Tests run: 1,  Failures: 1,  Errors: 0

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