You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Tim Ellison (JIRA)" <ji...@apache.org> on 2009/01/28 18:32:00 UTC

[jira] Assigned: (HARMONY-6075) [eut][classlib][luni] - URI returned by URI.relativize(URI) should set SchemeSpecificPart

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

Tim Ellison reassigned HARMONY-6075:
------------------------------------

    Assignee: Tim Ellison

> [eut][classlib][luni] - URI returned by URI.relativize(URI) should set SchemeSpecificPart
> -----------------------------------------------------------------------------------------
>
>                 Key: HARMONY-6075
>                 URL: https://issues.apache.org/jira/browse/HARMONY-6075
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>    Affects Versions: 5.0M8
>            Reporter: Regis Xu
>            Assignee: Tim Ellison
>             Fix For: 5.0M9
>
>         Attachments: HARMONY-6075.diff
>
>
> the error of eut test testPathVariableLocation in org.eclipse.core.tests.resources is caused by this bug. Other errors in this test suite seems also caused bye this bug. 
> following simple test show this problem:
>     public void test_relativize3() throws Exception {
>         URI uri = new URI("file", null, "/test/location", null);
>         URI base = new URI("file", null, "/test", null);
>         URI relative = base.relativize(uri);
>         assertEquals("location", relative.getSchemeSpecificPart());
>         assertNull(relative.getScheme());
>     }
> I'll attach patch to fix this soon.

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