From 78dffb6534d6e2e22cca521dd13fe53881c1aee8 Mon Sep 17 00:00:00 2001 From: Benjamin Bentmann Date: Fri, 29 May 2009 19:02:37 +0000 Subject: [PATCH] o Stabilized IT to create proper pre-conditions independently from the previous test runs git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@780076 13f79535-47bb-0310-9956-ffa450edef68 --- .../it/MavenITmng3023ReactorDependencyResolutionTest.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3023ReactorDependencyResolutionTest.java b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3023ReactorDependencyResolutionTest.java index ea972bdbf7..f8bf0f9ddb 100644 --- a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3023ReactorDependencyResolutionTest.java +++ b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng3023ReactorDependencyResolutionTest.java @@ -136,6 +136,9 @@ public class MavenITmng3023ReactorDependencyResolutionTest List compileClassPath = verifier.loadLines( "consumer/target/compile.classpath", "UTF-8" ); assertTrue( compileClassPath.toString(), compileClassPath.contains( "dependency-1.jar" ) ); assertFalse( compileClassPath.toString(), compileClassPath.contains( "dependency-classes" ) ); + + // The IT doesn't actually run the compiler but merely mimics its effect, i.e. the creation of the output dir + new File( testDir, "dependency/dependency-classes" ).mkdirs(); verifier.deleteDirectory( "consumer/target" ); verifier.setLogFileName( "log-c-2.txt" );