You are viewing a plain text version of this content. The canonical link for it is here.
Posted to surefire-commits@maven.apache.org by kr...@apache.org on 2010/12/28 22:45:16 UTC

svn commit: r1053452 - in /maven/surefire/trunk/surefire-integration-tests/src/test: java/org/apache/maven/surefire/its/ForkConsoleOutputIT.java resources/fork-consoleOutput/pom.xml

Author: krosenvold
Date: Tue Dec 28 21:45:16 2010
New Revision: 1053452

URL: http://svn.apache.org/viewvc?rev=1053452&view=rev
Log:
o Mystery solved. Grid was setting useFile to false,
which was a requirement for the test

Modified:
    maven/surefire/trunk/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/ForkConsoleOutputIT.java
    maven/surefire/trunk/surefire-integration-tests/src/test/resources/fork-consoleOutput/pom.xml

Modified: maven/surefire/trunk/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/ForkConsoleOutputIT.java
URL: http://svn.apache.org/viewvc/maven/surefire/trunk/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/ForkConsoleOutputIT.java?rev=1053452&r1=1053451&r2=1053452&view=diff
==============================================================================
--- maven/surefire/trunk/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/ForkConsoleOutputIT.java (original)
+++ maven/surefire/trunk/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/ForkConsoleOutputIT.java Tue Dec 28 21:45:16 2010
@@ -35,7 +35,7 @@ public class ForkConsoleOutputIT
         super( "/fork-consoleOutput" );
     }
 
-    public void NoTestPrintSummaryTrueWithRedirect()
+    public void testPrintSummaryTrueWithRedirect()
         throws Exception
     {
         redirectToFile( true );
@@ -45,7 +45,7 @@ public class ForkConsoleOutputIT
         assertPresent( getSurefireReportsFile( "forkConsoleOutput.Test1-output.txt" ) );
     }
 
-    public void NoTestPrintSummaryTrueWithoutRedirect()
+    public void testPrintSummaryTrueWithoutRedirect()
         throws Exception
     {
         redirectToFile( false );
@@ -67,7 +67,7 @@ public class ForkConsoleOutputIT
         assertPresent( getSurefireReportsFile( "forkConsoleOutput.Test1-output.txt" ) );
     }
 
-    public void NoTestPrintSummaryFalseWithoutRedirect()
+    public void testPrintSummaryFalseWithoutRedirect()
         throws Exception
     {
         redirectToFile( false );

Modified: maven/surefire/trunk/surefire-integration-tests/src/test/resources/fork-consoleOutput/pom.xml
URL: http://svn.apache.org/viewvc/maven/surefire/trunk/surefire-integration-tests/src/test/resources/fork-consoleOutput/pom.xml?rev=1053452&r1=1053451&r2=1053452&view=diff
==============================================================================
--- maven/surefire/trunk/surefire-integration-tests/src/test/resources/fork-consoleOutput/pom.xml (original)
+++ maven/surefire/trunk/surefire-integration-tests/src/test/resources/fork-consoleOutput/pom.xml Tue Dec 28 21:45:16 2010
@@ -32,6 +32,7 @@
            <configuration>
              <forkMode>${forkMode}</forkMode>
              <printSummary>${printSummary}</printSummary>
+             <useFile>true</useFile>
              <redirectTestOutputToFile>${redirect.to.file}</redirectTestOutputToFile>
              <includes>
                 <include>**/Test*.java</include>