You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by up...@apache.org on 2018/08/01 20:15:42 UTC

[geode] branch develop updated: Removing reports of successful tests from the build output

This is an automated email from the ASF dual-hosted git repository.

upthewaterspout pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/develop by this push:
     new 7a26ae9  Removing reports of successful tests from the build output
7a26ae9 is described below

commit 7a26ae9bc2fe20c101b64a9dbfd3df806c45c951
Author: Dan Smith <ds...@pivotal.io>
AuthorDate: Wed Aug 1 13:15:37 2018 -0700

    Removing reports of successful tests from the build output
    
    These extra log messages are making it harder to find actual
    failures
---
 gradle/test.gradle | 16 ----------------
 1 file changed, 16 deletions(-)

diff --git a/gradle/test.gradle b/gradle/test.gradle
index 3a6521c..680d57a 100644
--- a/gradle/test.gradle
+++ b/gradle/test.gradle
@@ -295,22 +295,6 @@ subprojects {
           progress << "$now Completed test $desc.className $desc.name with result: ${result.resultType}$eol"
         }
 
-        afterSuite { desc, result ->
-          if (null != desc.className) {
-            def message = "Test Suite: ${desc.name}:"
-            if (result.failedTestCount > 0) {
-              message += " FAILED: ${result.failedTestCount}"
-            }
-            if (result.skippedTestCount > 0) {
-              message += " SKIPPED: ${result.skippedTestCount}"
-            }
-            if (result.successfulTestCount > 0) {
-              message += " PASSED: ${result.successfulTestCount}"
-            }
-            logger.quiet(message)
-          }
-        }
-
         doFirst {
           resultsDir.deleteDir()
           resultsDir.mkdirs()