mirror of https://github.com/apache/maven.git
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:
parent
11c2b79ba2
commit
d90f2e0f19
|
@ -13,8 +13,7 @@ public class MavenIT0026Test
|
|||
public MavenIT0026Test()
|
||||
throws InvalidVersionSpecificationException
|
||||
{
|
||||
// < 2.1 (including snapshots)
|
||||
super( "[,2.0.99)" );
|
||||
super();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -14,8 +14,7 @@ public class MavenIT0051Test
|
|||
public MavenIT0051Test()
|
||||
throws InvalidVersionSpecificationException
|
||||
{
|
||||
// < 2.1 (including snapshots)
|
||||
super( "[,2.0.99)" );
|
||||
super();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -14,8 +14,7 @@ public class MavenIT0092Test
|
|||
public MavenIT0092Test()
|
||||
throws InvalidVersionSpecificationException
|
||||
{
|
||||
// < 2.1 (including snapshots)
|
||||
super( "[,2.0.99)" );
|
||||
super();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -14,8 +14,7 @@ public class MavenIT0111PluginsThatRequireAResourceFromAnExtensionTest
|
|||
public MavenIT0111PluginsThatRequireAResourceFromAnExtensionTest()
|
||||
throws InvalidVersionSpecificationException
|
||||
{
|
||||
// < 2.1 (including snapshots)
|
||||
super( "(,2.0.99)" );
|
||||
super();
|
||||
}
|
||||
|
||||
public void testit0111()
|
||||
|
|
|
@ -14,8 +14,7 @@ public class MavenIT0114ExtensionThatProvidesResources
|
|||
public MavenIT0114ExtensionThatProvidesResources()
|
||||
throws InvalidVersionSpecificationException
|
||||
{
|
||||
// < 2.1 (including snapshots)
|
||||
super( "(,2.0.99)" );
|
||||
super();
|
||||
}
|
||||
|
||||
public void testit0114()
|
||||
|
|
|
@ -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()
|
||||
|
|
|
@ -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 ()
|
||||
|
|
|
@ -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" );
|
||||
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue