You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Sean Qiu (JIRA)" <ji...@apache.org> on 2008/11/03 10:26:44 UTC

[jira] Assigned: (HARMONY-6006) [classlib] [luni] Cannot process platform paths using backslash

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

Sean Qiu reassigned HARMONY-6006:
---------------------------------

    Assignee: Sean Qiu

> [classlib] [luni] Cannot process platform paths using backslash
> ---------------------------------------------------------------
>
>                 Key: HARMONY-6006
>                 URL: https://issues.apache.org/jira/browse/HARMONY-6006
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>    Affects Versions: 5.0M7
>            Reporter: Kevin Zhou
>            Assignee: Sean Qiu
>             Fix For: 5.0M8
>
>         Attachments: HY-1003.diff
>
>   Original Estimate: 24h
>  Remaining Estimate: 24h
>
> Defect Reproduce Steps:
> 1. Make folders like /ffs0/niagara/bin
> 2. Make a symbolic prefix link "/niagara" using the command:
> ln -s /ffs0/niagara /niagara
> 3. Run CanonicalPathTest [1] using the command:
> java CanonicalPathTest /niagara /ffs0/niagara /niagara/bin /ffs0/niagara/bin
> 4. Defect Result shown as [2], the correct result should  be [3].
> [1] CanonicalPathTest.java
> import java.io.File;
> import java.io.IOException;
> public class CanonicalPathTest {
> public static void main(String[] args) throws IOException {
> File file = null;
> for (int index = 0; index < args.length; index++) { file = new File(args[index]); System.out.println(args[index] + "->" + file.getCanonicalPath()); }
> }
> }
> [2] Defect Result:
> /niagara->/ffs0/niagara
> /ffs0/niagara->/ffs0/niagara
> /niagara/bin->/niagara/bin   // it's wrong
> /ffs0/niagara/bin->/ffs0/niagara/bin
> [3] Correct Result:
> /niagara->/ffs0/niagara
> /ffs0/niagara->/ffs0/niagara
> /niagara/bin->/ffs0/niagara/bin
> /ffs0/niagara/bin->/ffs0/niagara/bi

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