You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Richard Liang (JIRA)" <ji...@apache.org> on 2007/02/09 09:21:06 UTC

[jira] Resolved: (HARMONY-2146) [classlib][io] java.io.File.lastModified() returns wrong value

     [ https://issues.apache.org/jira/browse/HARMONY-2146?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Richard Liang resolved HARMONY-2146.
------------------------------------

    Resolution: Fixed

Hello Ruth,

The patch has been committed at revision r505213. Thanks a lot for this enhancement. would you please verify this problem is fixed as you expected. 

Best regards,
Richard

> [classlib][io] java.io.File.lastModified() returns wrong value
> --------------------------------------------------------------
>
>                 Key: HARMONY-2146
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2146
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Igor V. Stolyarov
>         Assigned To: Richard Liang
>         Attachments: FileTest.patch, Harmony-2146.diff
>
>
> java.io.File.lastModified() returns wrong value
> Test for reproduce:
> FileTest.java--------------------------------------
> import java.io.*;
> public class FileTest{
>     public static void main(String[] argv){
>         File obj=new File("/../");
>         long res=obj.lastModified();
>         if(res > 0) System.out.println("Test pass, res = " + res);
>         else System.out.println("Test fails, res = " + res);
>     }
> }
> -------------------------------------------------------
> RI output:
> 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))
> Test pass, res = 1163159165728
> -------------------------------------------------------
> Harmony output:
> Apache Harmony Launcher : (c) Copyright 1991, 2006 The Apache Software Foundatio
> n or its licensors, as applicable.
> java version "1.5.0"
> pre-alpha : not complete or compatible
> svn = r469471, (Oct 31 2006), Windows/ia32/msvc 1310, release build
> http://incubator.apache.org/harmony
> Test fails, res = 0

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.