[Cmake-commits] CMake branch, next, updated. v2.8.8-2840-g6e160e1

Bill Hoffman bill.hoffman at kitware.com
Tue May 8 14:48:18 EDT 2012


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, next has been updated
       via  6e160e1c61b36ef96e312813f40275066925256f (commit)
       via  761d93129fb72d0418facb785776533b33d24a01 (commit)
      from  4c53e3337014ab3798b19e4b6ba4e2c1fc30acb3 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=6e160e1c61b36ef96e312813f40275066925256f
commit 6e160e1c61b36ef96e312813f40275066925256f
Merge: 4c53e33 761d931
Author:     Bill Hoffman <bill.hoffman at kitware.com>
AuthorDate: Tue May 8 14:48:17 2012 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Tue May 8 14:48:17 2012 -0400

    Merge topic 'mumps_coverage' into next
    
    761d931 Do not try to run bullseye coverage if COVFILE env is empty.


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=761d93129fb72d0418facb785776533b33d24a01
commit 761d93129fb72d0418facb785776533b33d24a01
Author:     Bill Hoffman <bill.hoffman at kitware.com>
AuthorDate: Tue May 8 14:47:13 2012 -0400
Commit:     Bill Hoffman <bill.hoffman at kitware.com>
CommitDate: Tue May 8 14:47:13 2012 -0400

    Do not try to run bullseye coverage if COVFILE env is empty.

diff --git a/Source/CTest/cmCTestCoverageHandler.cxx b/Source/CTest/cmCTestCoverageHandler.cxx
index 48bea64..593512e 100644
--- a/Source/CTest/cmCTestCoverageHandler.cxx
+++ b/Source/CTest/cmCTestCoverageHandler.cxx
@@ -1825,7 +1825,7 @@ int cmCTestCoverageHandler::HandleBullseyeCoverage(
   cmCTestCoverageHandlerContainer* cont)
 {
   const char* covfile = cmSystemTools::GetEnv("COVFILE");
-  if(!covfile)
+  if(!covfile || strlen(covfile) == 0)
     {
     cmCTestLog(this->CTest, HANDLER_VERBOSE_OUTPUT, 
                " COVFILE environment variable not found, not running " 

-----------------------------------------------------------------------

Summary of changes:
 Source/CTest/cmCTestCoverageHandler.cxx |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list