You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ag...@apache.org on 2014/10/13 19:44:17 UTC

git commit: Add debug output to Surefire943ReportContentIT for analysis of the failing test in Jenkins

Repository: maven-surefire
Updated Branches:
  refs/heads/master 3ab27f473 -> 254e7390a


Add debug output to Surefire943ReportContentIT for analysis of the failing test in Jenkins


Project: http://git-wip-us.apache.org/repos/asf/maven-surefire/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven-surefire/commit/254e7390
Tree: http://git-wip-us.apache.org/repos/asf/maven-surefire/tree/254e7390
Diff: http://git-wip-us.apache.org/repos/asf/maven-surefire/diff/254e7390

Branch: refs/heads/master
Commit: 254e7390a833222d006314c54cbb2be0a929d18d
Parents: 3ab27f4
Author: Andreas Gudian <ag...@apache.org>
Authored: Mon Oct 13 19:44:04 2014 +0200
Committer: Andreas Gudian <ag...@apache.org>
Committed: Mon Oct 13 19:44:04 2014 +0200

----------------------------------------------------------------------
 .../surefire/its/jiras/Surefire943ReportContentIT.java | 13 +++++++++++--
 1 file changed, 11 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven-surefire/blob/254e7390/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/jiras/Surefire943ReportContentIT.java
----------------------------------------------------------------------
diff --git a/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/jiras/Surefire943ReportContentIT.java b/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/jiras/Surefire943ReportContentIT.java
index f702999..249ed9b 100644
--- a/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/jiras/Surefire943ReportContentIT.java
+++ b/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/jiras/Surefire943ReportContentIT.java
@@ -50,8 +50,17 @@ public class Surefire943ReportContentIT
         throws Exception
     {
         OutputValidator validator =
-            unpack( "surefire-943-report-content" ).maven().sysProp( "parallel", parallelMode ).sysProp( "threadCount",
-                                                                                                         4 ).withFailure().executeTest();
+            unpack( "surefire-943-report-content" ).maven()
+            .sysProp( "parallel", parallelMode )
+            .sysProp( "threadCount", 4 )
+            .withFailure().executeTest();
+
+        System.out.println("===== START EXECUTION LOG =====");
+        for ( String line : validator.loadLogLines() )
+        {
+            System.out.println( line );
+        }
+        System.out.println("===== END EXECUTION LOG =====");
 
         validator.assertTestSuiteResults( 10, 1, 3, 3 );