You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by be...@apache.org on 2008/12/09 19:53:18 UTC

svn commit: r724820 - /maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenIT0069Test.java

Author: bentmann
Date: Tue Dec  9 10:53:17 2008
New Revision: 724820

URL: http://svn.apache.org/viewvc?rev=724820&view=rev
Log:
o Fixed test to compensate for old mvn scripts which didn't properly report the exit code on Windows

Modified:
    maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenIT0069Test.java

Modified: maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenIT0069Test.java
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenIT0069Test.java?rev=724820&r1=724819&r2=724820&view=diff
==============================================================================
--- maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenIT0069Test.java (original)
+++ maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenIT0069Test.java Tue Dec  9 10:53:17 2008
@@ -74,6 +74,7 @@
             try
             {
                 verifier.executeGoal( "org.apache.maven.its.plugins:maven-it-plugin-dependency-resolution:2.1-SNAPSHOT:compile" );
+                verifier.verifyErrorFreeLog();
                 fail( "Build did not fail!" );
             }
             catch( VerificationException e )