You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by "Xavier Hanin (JIRA)" <ji...@apache.org> on 2007/12/07 21:11:43 UTC

[jira] Updated: (IVY-663) latest compatible conflict manager fails with circular dependencies and dynamic revision

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

Xavier Hanin updated IVY-663:
-----------------------------

    Description: 
Adding this test case to LatestConpatibleConflictManagerTest fails:
{code}
    public void testCompatibilityResolveCircularDependency3() throws Exception {
        fixture
            .addMD("#A;1->#B;2")
            .addMD("#C;1->#B;1")
            .addMD("#C;2->#B;2")
            .addMD("#C;3->#B;3")
            .addMD("#B;1->#C;latest.integration") // circular dependency
            .addMD("#B;2->#C;latest.integration") // circular dependency
            .addMD("#B;3->#C;latest.integration") // circular dependency
            .init();
        resolveAndAssert("#A;1", "#B;2, #C;2");
    }
{code}

  was:
Adding this test case to LatestConpatibleConflictManagerTest fails:
    public void testCompatibilityResolveCircularDependency3() throws Exception {
        fixture
            .addMD("#A;1->#B;2")
            .addMD("#C;1->#B;1")
            .addMD("#C;2->#B;2")
            .addMD("#C;3->#B;3")
            .addMD("#B;1->#C;latest.integration") // circular dependency
            .addMD("#B;2->#C;latest.integration") // circular dependency
            .addMD("#B;3->#C;latest.integration") // circular dependency
            .init();
        resolveAndAssert("#A;1", "#B;2, #C;2");
    }



> latest compatible conflict manager fails with circular dependencies and dynamic revision
> ----------------------------------------------------------------------------------------
>
>                 Key: IVY-663
>                 URL: https://issues.apache.org/jira/browse/IVY-663
>             Project: Ivy
>          Issue Type: Bug
>    Affects Versions: 2.0.0-beta-1
>            Reporter: Xavier Hanin
>             Fix For: 2.0.0-beta-2
>
>
> Adding this test case to LatestConpatibleConflictManagerTest fails:
> {code}
>     public void testCompatibilityResolveCircularDependency3() throws Exception {
>         fixture
>             .addMD("#A;1->#B;2")
>             .addMD("#C;1->#B;1")
>             .addMD("#C;2->#B;2")
>             .addMD("#C;3->#B;3")
>             .addMD("#B;1->#C;latest.integration") // circular dependency
>             .addMD("#B;2->#C;latest.integration") // circular dependency
>             .addMD("#B;3->#C;latest.integration") // circular dependency
>             .init();
>         resolveAndAssert("#A;1", "#B;2, #C;2");
>     }
> {code}

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