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/22 23:41:45 UTC

svn commit: r1052088 - in /maven/surefire/trunk: maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/ maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/booterclient/ maven-surefire-common/src/main/java/org/apache/mav...

Author: krosenvold
Date: Wed Dec 22 22:41:44 2010
New Revision: 1052088

URL: http://svn.apache.org/viewvc?rev=1052088&view=rev
Log:
[SUREFIRE-651] printSummary=true disables redirectTestOutputToFile

Added:
    maven/surefire/trunk/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/booterclient/output/NullOutputConsumer.java   (contents, props changed)
      - copied, changed from r1051987, maven/surefire/trunk/surefire-integration-tests/src/test/resources/surefire-639-redirectTestOutputToFileWhenForking/src/test/java/surefire639/Test2.java
    maven/surefire/trunk/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/ForkConsoleOutputIT.java   (with props)
    maven/surefire/trunk/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/SurefireVerifierTestClass.java   (with props)
    maven/surefire/trunk/surefire-integration-tests/src/test/resources/fork-consoleOutput/pom.xml   (contents, props changed)
      - copied, changed from r1051987, maven/surefire/trunk/surefire-integration-tests/src/test/resources/surefire-639-redirectTestOutputToFileWhenForking/pom.xml
    maven/surefire/trunk/surefire-integration-tests/src/test/resources/fork-consoleOutput/src/test/java/forkConsoleOutput/Test1.java   (contents, props changed)
      - copied, changed from r1051987, maven/surefire/trunk/surefire-integration-tests/src/test/resources/surefire-639-redirectTestOutputToFileWhenForking/src/test/java/surefire639/Test1.java
Removed:
    maven/surefire/trunk/surefire-integration-tests/src/test/resources/surefire-639-redirectTestOutputToFileWhenForking/pom.xml
    maven/surefire/trunk/surefire-integration-tests/src/test/resources/surefire-639-redirectTestOutputToFileWhenForking/src/test/java/surefire639/Test1.java
    maven/surefire/trunk/surefire-integration-tests/src/test/resources/surefire-639-redirectTestOutputToFileWhenForking/src/test/java/surefire639/Test2.java
Modified:
    maven/surefire/trunk/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java
    maven/surefire/trunk/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/booterclient/ForkStarter.java
    maven/surefire/trunk/surefire-integration-tests/src/test/resources/runOrder/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=1052088&r1=1052087&r2=1052088&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 Wed Dec 22 22:41:44 2010
@@ -505,7 +505,7 @@ public abstract class AbstractSurefireMo
             createStartupConfiguration( forkConfiguration, provider, classLoaderConfiguration );
         ProviderConfiguration providerConfiguration = createProviderConfiguration( forkConfiguration );
         return new ForkStarter( providerConfiguration, startupConfiguration, getReportsDirectory(), forkConfiguration,
-                                getForkedProcessTimeoutInSeconds() );
+                                getForkedProcessTimeoutInSeconds(), isPrintSummary() );
     }
 
     protected ForkConfiguration getForkConfiguration()
@@ -858,9 +858,13 @@ public abstract class AbstractSurefireMo
     {
         if ( isUseFile() )
         {
-            if ( isPrintSummary() )
+            if ( forking )
             {
-                return forking ? ForkingConsoleReporter.class.getName() : ConsoleReporter.class.getName();
+                return ForkingConsoleReporter.class.getName();
+            }
+            else
+            {
+                return isPrintSummary() ? ConsoleReporter.class.getName() : null;
             }
         }
         else if ( BRIEF_REPORT_FORMAT.equals( getReportFormat() ) )

Modified: maven/surefire/trunk/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/booterclient/ForkStarter.java
URL: http://svn.apache.org/viewvc/maven/surefire/trunk/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/booterclient/ForkStarter.java?rev=1052088&r1=1052087&r2=1052088&view=diff
==============================================================================
--- maven/surefire/trunk/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/booterclient/ForkStarter.java (original)
+++ maven/surefire/trunk/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/booterclient/ForkStarter.java Wed Dec 22 22:41:44 2010
@@ -20,6 +20,7 @@ package org.apache.maven.plugin.surefire
  */
 
 import org.apache.maven.plugin.surefire.booterclient.output.FileOutputConsumerProxy;
+import org.apache.maven.plugin.surefire.booterclient.output.NullOutputConsumer;
 import org.apache.maven.plugin.surefire.booterclient.output.OutputConsumer;
 import org.apache.maven.plugin.surefire.booterclient.output.StandardOutputConsumer;
 import org.apache.maven.plugin.surefire.booterclient.output.SupressFooterOutputConsumerProxy;
@@ -75,14 +76,18 @@ public class ForkStarter
 
     private final File reportsDirectory;
 
+    private final boolean printSummary;
+
     public ForkStarter( ProviderConfiguration providerConfiguration, StartupConfiguration startupConfiguration,
-                        File reportsDirectory, ForkConfiguration forkConfiguration, int forkedProcessTimeoutInSeconds )
+                        File reportsDirectory, ForkConfiguration forkConfiguration, int forkedProcessTimeoutInSeconds,
+                        boolean printSummary )
     {
         this.forkConfiguration = forkConfiguration;
         this.providerConfiguration = providerConfiguration;
         this.reportsDirectory = reportsDirectory;
         this.forkedProcessTimeoutInSeconds = forkedProcessTimeoutInSeconds;
         this.startupConfiguration = startupConfiguration;
+        this.printSummary = printSummary;
     }
 
     public int run()
@@ -204,12 +209,12 @@ public class ForkStarter
 
         ForkingStreamConsumer out =
             getForkingStreamConsumer( showHeading, showFooter, startupConfiguration.isRedirectTestOutputToFile(),
-                                      willBeSharingConsumer );
+                                      willBeSharingConsumer, printSummary );
 
         StreamConsumer err = willBeSharingConsumer
             ? out
             : getForkingStreamConsumer( showHeading, showFooter, startupConfiguration.isRedirectTestOutputToFile(),
-                                        false );
+                                        false, printSummary );
 
         if ( forkConfiguration.isDebug() )
         {
@@ -267,9 +272,11 @@ public class ForkStarter
     }
 
     private ForkingStreamConsumer getForkingStreamConsumer( boolean showHeading, boolean showFooter,
-                                                            boolean redirectTestOutputToFile, boolean mustBeThreadSafe )
+                                                            boolean redirectTestOutputToFile, boolean mustBeThreadSafe,
+                                                            boolean printSummary )
     {
-        OutputConsumer outputConsumer = new StandardOutputConsumer();
+        OutputConsumer outputConsumer =
+            printSummary ? new StandardOutputConsumer() : (OutputConsumer) new NullOutputConsumer();
 
         if ( redirectTestOutputToFile )
         {

Copied: maven/surefire/trunk/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/booterclient/output/NullOutputConsumer.java (from r1051987, maven/surefire/trunk/surefire-integration-tests/src/test/resources/surefire-639-redirectTestOutputToFileWhenForking/src/test/java/surefire639/Test2.java)
URL: http://svn.apache.org/viewvc/maven/surefire/trunk/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/booterclient/output/NullOutputConsumer.java?p2=maven/surefire/trunk/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/booterclient/output/NullOutputConsumer.java&p1=maven/surefire/trunk/surefire-integration-tests/src/test/resources/surefire-639-redirectTestOutputToFileWhenForking/src/test/java/surefire639/Test2.java&r1=1051987&r2=1052088&rev=1052088&view=diff
==============================================================================
--- maven/surefire/trunk/surefire-integration-tests/src/test/resources/surefire-639-redirectTestOutputToFileWhenForking/src/test/java/surefire639/Test2.java (original)
+++ maven/surefire/trunk/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/booterclient/output/NullOutputConsumer.java Wed Dec 22 22:41:44 2010
@@ -1,4 +1,5 @@
-package surefire639;
+package org.apache.maven.plugin.surefire.booterclient.output;
+
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
@@ -18,31 +19,34 @@ package surefire639;
  * under the License.
  */
 
+import org.apache.maven.surefire.report.ReportEntry;
 
-import org.junit.Test;
-import org.junit.BeforeClass;
-import org.junit.AfterClass;
+/**
+ * @author Kristian Rosenvold
+ */
+public class NullOutputConsumer implements OutputConsumer
+{
+    public void consumeHeaderLine( String line )
+    {
+    }
 
+    public void consumeMessageLine( String line )
+    {
+    }
 
-import static org.junit.Assert.assertTrue;
-import static org.junit.Assert.fail;
-import static org.hamcrest.CoreMatchers.*;
-import static org.junit.Assume.*;
-public class Test2
-{
-    @Test
-    public void test6281() {
-        System.out.println( "628Test2 on" + Thread.currentThread().getName());
+    public void consumeFooterLine( String line )
+    {
     }
 
-    @BeforeClass
-    public static void testWithFailingAssumption2() {
-        System.out.println( "Before628Test2 on" + Thread.currentThread().getName());
+    public void consumeOutputLine( String line )
+    {
     }
 
-    @AfterClass
-    public static void testWithFailingAssumption3() {
-        System.out.println( "After628Test2 on" + Thread.currentThread().getName());
+    public void testSetStarting( ReportEntry reportEntry )
+    {
     }
 
+    public void testSetCompleted()
+    {
+    }
 }

Propchange: maven/surefire/trunk/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/booterclient/output/NullOutputConsumer.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: 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=1052088&view=auto
==============================================================================
--- maven/surefire/trunk/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/ForkConsoleOutputIT.java (added)
+++ maven/surefire/trunk/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/ForkConsoleOutputIT.java Wed Dec 22 22:41:44 2010
@@ -0,0 +1,78 @@
+package org.apache.maven.surefire.its;
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+
+/**
+ * Asserts proper behaviour of console output when forking
+ * SUREFIRE-639
+ * SUREFIRE-651
+ *
+ * @author Kristian Rosenvold
+ */
+public class ForkConsoleOutputIT
+    extends SurefireVerifierTestClass
+{
+
+    public ForkConsoleOutputIT()
+    {
+        super( "/fork-consoleOutput" );
+    }
+
+    public void testPrintSummaryTrueWithRedirect()
+        throws Exception
+    {
+        redirectToFile( true );
+        printSummary( true );
+
+        execute( "test" );
+//        assertPresent( getSurefireReportsFile( "forkConsoleOutput.Test1-output.txt" ) );
+    }
+
+    public void testPrintSummaryTrueWithoutRedirect()
+        throws Exception
+    {
+        redirectToFile( false );
+        printSummary( true );
+
+        execute( "test" );
+//        assertNotPresent( getSurefireReportsFile( "forkConsoleOutput.Test1-output.txt" ) );
+    }
+
+    public void testPrintSummaryFalseWithRedirect()
+        throws Exception
+    {
+        redirectToFile( true );
+        printSummary( false );
+
+        execute( "test" );
+//        assertPresent( getSurefireReportsFile( "forkConsoleOutput.Test1-output.txt" ) );
+    }
+
+    public void testPrintSummaryFalseWithoutRedirect()
+        throws Exception
+    {
+        redirectToFile( false );
+        printSummary( false );
+
+        execute( "test" );
+//        assertNotPresent( getSurefireReportsFile( "forkConsoleOutput.Test1-output.txt" ) );
+    }
+
+}

Propchange: maven/surefire/trunk/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/ForkConsoleOutputIT.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: maven/surefire/trunk/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/SurefireVerifierTestClass.java
URL: http://svn.apache.org/viewvc/maven/surefire/trunk/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/SurefireVerifierTestClass.java?rev=1052088&view=auto
==============================================================================
--- maven/surefire/trunk/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/SurefireVerifierTestClass.java (added)
+++ maven/surefire/trunk/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/SurefireVerifierTestClass.java Wed Dec 22 22:41:44 2010
@@ -0,0 +1,138 @@
+package org.apache.maven.surefire.its;
+
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+import org.apache.maven.it.VerificationException;
+import org.apache.maven.it.Verifier;
+import org.apache.maven.it.util.ResourceExtractor;
+
+import java.io.File;
+import java.io.IOException;
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ * Contains commonly used featurtes for most tests, encapsulating
+ * common use cases
+ *
+ * @author Kristian Rosenvold
+ */
+public abstract class SurefireVerifierTestClass
+    extends AbstractSurefireIntegrationTestClass
+{
+    private final String testProject;
+
+    private final File testDir;
+
+    private final List cliOptions = new ArrayList();
+
+    private final List goals;
+
+    private final Verifier verifier;
+
+
+    protected SurefireVerifierTestClass( String testProject )
+    {
+        try
+        {
+            this.testProject = testProject;
+            testDir = ResourceExtractor.simpleExtractResources( getClass(), "/fork-consoleOutput" );
+            this.goals = getInitialGoals();
+            this.verifier = new Verifier( testDir.getAbsolutePath() );
+        }
+        catch ( VerificationException e )
+        {
+            throw new RuntimeException( e );
+        }
+        catch ( IOException e )
+        {
+            throw new RuntimeException( e );
+        }
+    }
+
+    protected void assertPresent( File file )
+    {
+        verifier.assertFilePresent( file.getAbsolutePath() );
+    }
+
+    protected void assertNotPresent( File file )
+    {
+        verifier.assertFileNotPresent( file.getAbsolutePath() );
+    }
+
+    protected SurefireVerifierTestClass failNever()
+    {
+        cliOptions.add( "-fn" );
+        return this;
+    }
+
+    protected SurefireVerifierTestClass addGoal( String goal )
+    {
+        goals.add( goal );
+        return this;
+    }
+
+    protected Verifier execute( String goal )
+        throws VerificationException
+    {
+        addGoal( goal );
+        verifier.setCliOptions( cliOptions );
+        verifier.executeGoals( goals );
+        verifier.resetStreams();
+        return verifier;
+    }
+
+    protected File getSurefireReportsFile( String fileName )
+    {
+        File targetDir = new File( testDir, "target/surefire-reports" );
+        return new File( targetDir, fileName );
+    }
+
+    protected void printSummary( boolean printsummary )
+    {
+        addGoal( "-DprintSummary=" + printsummary );
+    }
+
+    protected void redirectToFile( boolean redirect )
+    {
+        addGoal( "-Dredirect.to.file=" + redirect );
+    }
+
+    protected void forkOnce()
+    {
+        forkMode( "once" );
+    }
+
+    protected void forkNever()
+    {
+        forkMode( "never" );
+    }
+
+    protected void forkAlways()
+    {
+        forkMode( "always" );
+    }
+
+    protected void forkMode( String forkMode )
+    {
+        addGoal( "-DforkMode=" + forkMode );
+    }
+
+}

Propchange: maven/surefire/trunk/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/SurefireVerifierTestClass.java
------------------------------------------------------------------------------
    svn:eol-style = native

Copied: maven/surefire/trunk/surefire-integration-tests/src/test/resources/fork-consoleOutput/pom.xml (from r1051987, maven/surefire/trunk/surefire-integration-tests/src/test/resources/surefire-639-redirectTestOutputToFileWhenForking/pom.xml)
URL: http://svn.apache.org/viewvc/maven/surefire/trunk/surefire-integration-tests/src/test/resources/fork-consoleOutput/pom.xml?p2=maven/surefire/trunk/surefire-integration-tests/src/test/resources/fork-consoleOutput/pom.xml&p1=maven/surefire/trunk/surefire-integration-tests/src/test/resources/surefire-639-redirectTestOutputToFileWhenForking/pom.xml&r1=1051987&r2=1052088&rev=1052088&view=diff
==============================================================================
--- maven/surefire/trunk/surefire-integration-tests/src/test/resources/surefire-639-redirectTestOutputToFileWhenForking/pom.xml (original)
+++ maven/surefire/trunk/surefire-integration-tests/src/test/resources/fork-consoleOutput/pom.xml Wed Dec 22 22:41:44 2010
@@ -2,16 +2,12 @@
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.maven.plugins.surefire</groupId>
-  <artifactId>junit4-test</artifactId>
+  <artifactId>fork-consoleOutput</artifactId>
   <packaging>jar</packaging>
   <version>1.0-SNAPSHOT</version>
-  <name>junit4-test</name>
+  <name>fork-consoleOutput</name>
   <url>http://maven.apache.org</url>
-  <properties>
-    <junit.version>4.8.1</junit.version>
-    <redirect.to.file>true</redirect.to.file>
-    <forkMode>once</forkMode>
-  </properties>
+
   <dependencies>
       <dependency>
           <groupId>junit</groupId>
@@ -35,6 +31,7 @@
            <version>${surefire.version}</version>
            <configuration>
              <forkMode>${forkMode}</forkMode>
+             <printSummary>${printSummary}</printSummary>
              <redirectTestOutputToFile>${redirect.to.file}</redirectTestOutputToFile>
              <includes>
                 <include>**/Test*.java</include>
@@ -42,5 +39,14 @@
            </configuration>
         </plugin>
      </plugins>
+
   </build>
+
+    <properties>
+      <junit.version>4.8.1</junit.version>
+      <redirect.to.file>true</redirect.to.file>
+      <forkMode>once</forkMode>
+      <printSummary>true</printSummary>
+    </properties>
+
 </project>

Propchange: maven/surefire/trunk/surefire-integration-tests/src/test/resources/fork-consoleOutput/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Copied: maven/surefire/trunk/surefire-integration-tests/src/test/resources/fork-consoleOutput/src/test/java/forkConsoleOutput/Test1.java (from r1051987, maven/surefire/trunk/surefire-integration-tests/src/test/resources/surefire-639-redirectTestOutputToFileWhenForking/src/test/java/surefire639/Test1.java)
URL: http://svn.apache.org/viewvc/maven/surefire/trunk/surefire-integration-tests/src/test/resources/fork-consoleOutput/src/test/java/forkConsoleOutput/Test1.java?p2=maven/surefire/trunk/surefire-integration-tests/src/test/resources/fork-consoleOutput/src/test/java/forkConsoleOutput/Test1.java&p1=maven/surefire/trunk/surefire-integration-tests/src/test/resources/surefire-639-redirectTestOutputToFileWhenForking/src/test/java/surefire639/Test1.java&r1=1051987&r2=1052088&rev=1052088&view=diff
==============================================================================
--- maven/surefire/trunk/surefire-integration-tests/src/test/resources/surefire-639-redirectTestOutputToFileWhenForking/src/test/java/surefire639/Test1.java (original)
+++ maven/surefire/trunk/surefire-integration-tests/src/test/resources/fork-consoleOutput/src/test/java/forkConsoleOutput/Test1.java Wed Dec 22 22:41:44 2010
@@ -1,4 +1,4 @@
-package surefire639;
+package forkConsoleOutput;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -19,30 +19,25 @@ package surefire639;
  * under the License.
  */
 
-import org.junit.Test;
-import org.junit.BeforeClass;
 import org.junit.AfterClass;
+import org.junit.BeforeClass;
+import org.junit.Test;
 
-
-import static org.junit.Assert.assertTrue;
-import static org.junit.Assert.fail;
-import static org.hamcrest.CoreMatchers.*;
-import static org.junit.Assume.*;
 public class Test1
 {
     @Test
     public void test6281() {
-        System.out.println( "628Test1 on" + Thread.currentThread().getName());
+        System.out.println( "Test1 on" + Thread.currentThread().getName());
     }
 
     @BeforeClass
     public static void testWithFailingAssumption2() {
-        System.out.println( "Before628Test1 on" + Thread.currentThread().getName());
+        System.out.println( "BeforeTest1 on" + Thread.currentThread().getName());
     }
     
     @AfterClass
     public static void testWithFailingAssumption3() {
-        System.out.println( "After628Test1 on" + Thread.currentThread().getName());
+        System.out.println( "AfterTest1 on" + Thread.currentThread().getName());
     }
 
 }

Propchange: maven/surefire/trunk/surefire-integration-tests/src/test/resources/fork-consoleOutput/src/test/java/forkConsoleOutput/Test1.java
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: maven/surefire/trunk/surefire-integration-tests/src/test/resources/runOrder/pom.xml
URL: http://svn.apache.org/viewvc/maven/surefire/trunk/surefire-integration-tests/src/test/resources/runOrder/pom.xml?rev=1052088&r1=1052087&r2=1052088&view=diff
==============================================================================
--- maven/surefire/trunk/surefire-integration-tests/src/test/resources/runOrder/pom.xml (original)
+++ maven/surefire/trunk/surefire-integration-tests/src/test/resources/runOrder/pom.xml Wed Dec 22 22:41:44 2010
@@ -45,7 +45,6 @@
         <version>${surefire.version}</version>
         <configuration>
           <forkMode>once</forkMode>
-          <printSummary>false</printSummary>
           <runOrder>${runOrder}</runOrder>
         </configuration>
         <dependencies>