remove restrictions on tests so they run on the revised 2.1

git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@690047 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Porter 2008-08-28 23:35:32 +00:00
parent 11c2b79ba2
commit d90f2e0f19
9 changed files with 9 additions and 17 deletions

View File

@ -13,8 +13,7 @@ public class MavenIT0026Test
public MavenIT0026Test()
throws InvalidVersionSpecificationException
{
// < 2.1 (including snapshots)
super( "[,2.0.99)" );
super();
}
/**

View File

@ -14,8 +14,7 @@ public class MavenIT0051Test
public MavenIT0051Test()
throws InvalidVersionSpecificationException
{
// < 2.1 (including snapshots)
super( "[,2.0.99)" );
super();
}
/**

View File

@ -14,8 +14,7 @@ public class MavenIT0092Test
public MavenIT0092Test()
throws InvalidVersionSpecificationException
{
// < 2.1 (including snapshots)
super( "[,2.0.99)" );
super();
}
/**

View File

@ -14,8 +14,7 @@ public class MavenIT0111PluginsThatRequireAResourceFromAnExtensionTest
public MavenIT0111PluginsThatRequireAResourceFromAnExtensionTest()
throws InvalidVersionSpecificationException
{
// < 2.1 (including snapshots)
super( "(,2.0.99)" );
super();
}
public void testit0111()

View File

@ -14,8 +14,7 @@ public class MavenIT0114ExtensionThatProvidesResources
public MavenIT0114ExtensionThatProvidesResources()
throws InvalidVersionSpecificationException
{
// < 2.1 (including snapshots)
super( "(,2.0.99)" );
super();
}
public void testit0114()

View File

@ -14,7 +14,7 @@ public class MavenITmng3221InfiniteForking
public MavenITmng3221InfiniteForking()
throws InvalidVersionSpecificationException
{
super( "(2.0.8,2.0.99)" ); // only test in 2.0.9+, not 2.1+ (including snapshots)
super( "(2.0.8,)" ); // only test in 2.0.9+
}
public void testitMNG3221a()

View File

@ -14,7 +14,7 @@ public class MavenITmng3485OverrideWagonExtensionTest
public MavenITmng3485OverrideWagonExtensionTest()
throws InvalidVersionSpecificationException
{
super( "(2.0.8,2.0.99)" ); // only test in 2.0.9+, < 2.1 (including snapshots)
super( "(2.0.8,)" ); // only test in 2.0.9+
}
public void testitMNG3485 ()

View File

@ -116,8 +116,7 @@ public class MavenITmng3599useHttpProxyForWebDAV
throws Exception
{
// Doesn't work until 2.0.10+
// TODO: reinstate for 2.1 when WebDAV works
if ( matchesVersionRange( "(2.0.9,2.0.99)" ) )
if ( matchesVersionRange( "(2.0.9,)" ) )
{
File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-3599-useHttpProxyForWebDAV" );

View File

@ -29,10 +29,8 @@ public class MavenITmng3652UserAgentHeader
public MavenITmng3652UserAgentHeader()
throws InvalidVersionSpecificationException
{
// TODO: fix support for this in 2.1-SNAPSHOT
// 2.0.10+
// super( "(2.0.9,)" );
super( "(2.0.9,2.0.99)" );
super( "(2.0.9,)" );
}
public void setUp()