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

[jira] Commented: (HARMONY-2157) [classlib][luni]not able to make a directory whose length is greater than 248

    [ http://issues.apache.org/jira/browse/HARMONY-2157?page=comments#action_12459619 ] 
            
Tony Wu commented on HARMONY-2157:
----------------------------------

finally, I submit a patch again. 
Paulex, would you please try it? Great thanks.

> [classlib][luni]not able to make a directory whose length is greater than 248
> -----------------------------------------------------------------------------
>
>                 Key: HARMONY-2157
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2157
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Tony Wu
>         Assigned To: Paulex Yang
>         Attachments: harmony-2157-test.diff, harmony-2157-test.diff, harmony-2157.diff, harmony-2157.diff, luni.diff, portlib.diff
>
>
> This testcase passed on RI but failed on harmony    
> public void testLongPath() throws IOException {
>         File dir = new File(".");
>         String longDirName = "abcdefghijklmnopqrstuvwx";// 24 chars
>         StringBuilder sb = new StringBuilder(dir + File.separator);
>         while (dir.getCanonicalPath().length() < 256 - longDirName.length()) {
>             sb.append(longDirName + File.separator);
>             dir = new File(sb.toString());
>             assertTrue("mkdir failed", dir.mkdir() && dir.exists());
>             dir.deleteOnExit();
>         }
>         while (dir.getCanonicalPath().length() < 256) {
>             sb.append(0);
>             dir = new File(sb.toString());
>             assertTrue("mkdir " + dir.getCanonicalPath().length() + " failed",
>                     dir.mkdir() && dir.exists());
>             dir.deleteOnExit();
>         }
>  }

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