mirror of https://github.com/apache/maven.git
o Enabled IT for MNG-2883 which - according to JIRA - is fixed
git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@711301 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
23fde60c04
commit
7585c593bc
|
@ -73,7 +73,6 @@ public class IntegrationTestSuite
|
||||||
/* Tests to be added
|
/* Tests to be added
|
||||||
MavenIT0109ReleaseUpdateTest
|
MavenIT0109ReleaseUpdateTest
|
||||||
MavenITmng0612NewestConflictResolverTest
|
MavenITmng0612NewestConflictResolverTest
|
||||||
MavenITmng3259DepsDroppedInMultiModuleBuildTest
|
|
||||||
MavenITmng3415JunkRepositoryMetadataTest
|
MavenITmng3415JunkRepositoryMetadataTest
|
||||||
MavenITmng3645POMSyntaxErrorTest
|
MavenITmng3645POMSyntaxErrorTest
|
||||||
*/
|
*/
|
||||||
|
@ -126,6 +125,7 @@ MavenITmng3645POMSyntaxErrorTest
|
||||||
suite.addTestSuite( MavenITmng3271DefaultReportsSuppressionTest.class );
|
suite.addTestSuite( MavenITmng3271DefaultReportsSuppressionTest.class );
|
||||||
suite.addTestSuite( MavenITmng3221InfiniteForkingTest.class );
|
suite.addTestSuite( MavenITmng3221InfiniteForkingTest.class );
|
||||||
suite.addTestSuite( MavenITmng3268MultipleDashPCommandLineTest.class );
|
suite.addTestSuite( MavenITmng3268MultipleDashPCommandLineTest.class );
|
||||||
|
suite.addTestSuite( MavenITmng3259DepsDroppedInMultiModuleBuildTest.class );
|
||||||
suite.addTestSuite( MavenITmng3220ImportScopeTest.class );
|
suite.addTestSuite( MavenITmng3220ImportScopeTest.class );
|
||||||
suite.addTestSuite( MavenITmng3134DistMgmtSiteUrlParentCalculationTest.class );
|
suite.addTestSuite( MavenITmng3134DistMgmtSiteUrlParentCalculationTest.class );
|
||||||
suite.addTestSuite( MavenITmng3106ProfileMultipleActivatorsTest.class );
|
suite.addTestSuite( MavenITmng3106ProfileMultipleActivatorsTest.class );
|
||||||
|
|
|
@ -26,9 +26,24 @@ import java.io.File;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This is a test set for <a href="http://jira.codehaus.org/browse/MNG-3259">MNG-3259</a>.
|
||||||
|
*
|
||||||
|
* @version $Id$
|
||||||
|
*/
|
||||||
public class MavenITmng3259DepsDroppedInMultiModuleBuildTest
|
public class MavenITmng3259DepsDroppedInMultiModuleBuildTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
|
||||||
|
/*
|
||||||
|
* TODO: All combinations from the cross product {jdk-1.4.2_16, jdk-1.5.0_14, jdk-1.6.0_07} x {mvn-2.0.7, mvn-2.0.8}
|
||||||
|
* passed this test for me (bentmann on WinXP). This makes the test appear very weak.
|
||||||
|
*/
|
||||||
|
public MavenITmng3259DepsDroppedInMultiModuleBuildTest()
|
||||||
|
{
|
||||||
|
super( "(2.0.8,)" );
|
||||||
|
}
|
||||||
|
|
||||||
public void testitMNG3259 ()
|
public void testitMNG3259 ()
|
||||||
throws Exception
|
throws Exception
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue