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 21:33:39 UTC

svn commit: r1053427 - in /maven/surefire/trunk: maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java surefire-integration-tests/src/test/resources/fork-consoleOutput/pom.xml

Author: krosenvold
Date: Tue Dec 28 20:33:38 2010
New Revision: 1053427

URL: http://svn.apache.org/viewvc?rev=1053427&view=rev
Log:
o Still trying to make heads or tails out of grid build failure

Modified:
    maven/surefire/trunk/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java
    maven/surefire/trunk/surefire-integration-tests/src/test/resources/fork-consoleOutput/pom.xml

Modified: maven/surefire/trunk/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java
URL: http://svn.apache.org/viewvc/maven/surefire/trunk/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java?rev=1053427&r1=1053426&r2=1053427&view=diff
==============================================================================
--- maven/surefire/trunk/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java (original)
+++ maven/surefire/trunk/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java Tue Dec 28 20:33:38 2010
@@ -856,6 +856,8 @@ public abstract class AbstractSurefireMo
      */
     private String getConsoleReporter( boolean forking )
     {
+        getLog().debug( "Forking " + forking + ", isUseFile=" + isUseFile() + ", isPrintSummary=" + isPrintSummary()
+                            + ",reportFormat=" + getReportFormat() );
         if ( isUseFile() )
         {
             if ( forking )

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=1053427&r1=1053426&r2=1053427&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 20:33:38 2010
@@ -32,6 +32,7 @@
            <configuration>
              <forkMode>${forkMode}</forkMode>
              <printSummary>${printSummary}</printSummary>
+             <useFile>${useFile}</useFile>
              <redirectTestOutputToFile>${redirect.to.file}</redirectTestOutputToFile>
              <includes>
                 <include>**/Test*.java</include>
@@ -46,6 +47,7 @@
       <junit.version>4.8.1</junit.version>
       <redirect.to.file>true</redirect.to.file>
       <forkMode>once</forkMode>
+      <useFile>true</useFile>
       <printSummary>true</printSummary>
     </properties>