[Cmake-commits] CMake branch, next, updated. v2.8.8-2823-g73eca95

Bill Hoffman bill.hoffman at kitware.com
Mon May 7 15:32:53 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  73eca95efb59146c7b1dee52768356be5c8b5e58 (commit)
       via  1b418f1fbfdeea561cc175929ac677d93e523e41 (commit)
      from  2aa76977fc9dcc36cc4c2073a020f5ed4e77994a (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=73eca95efb59146c7b1dee52768356be5c8b5e58
commit 73eca95efb59146c7b1dee52768356be5c8b5e58
Merge: 2aa7697 1b418f1
Author:     Bill Hoffman <bill.hoffman at kitware.com>
AuthorDate: Mon May 7 15:32:52 2012 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon May 7 15:32:52 2012 -0400

    Merge topic 'mumps_coverage' into next
    
    1b418f1 Change GT.M Coverage Parser global


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=1b418f1fbfdeea561cc175929ac677d93e523e41
commit 1b418f1fbfdeea561cc175929ac677d93e523e41
Author:     Joseph Snyder <joe.snyder at kitware.com>
AuthorDate: Mon May 7 14:12:51 2012 -0400
Commit:     Bill Hoffman <bill.hoffman at kitware.com>
CommitDate: Mon May 7 15:29:52 2012 -0400

    Change GT.M Coverage Parser global
    
    The coverage global should be in the local namespace.  This means the global
    will be ^ZZCOVERAGE instead of ^COVERAGE.  Change the parser to look for ^ZZCOVERAGE
    instead of the old ^COVERAGE

diff --git a/Source/CTest/cmParseGTMCoverage.cxx b/Source/CTest/cmParseGTMCoverage.cxx
index f850c3c..e1f02d6 100644
--- a/Source/CTest/cmParseGTMCoverage.cxx
+++ b/Source/CTest/cmParseGTMCoverage.cxx
@@ -61,7 +61,7 @@ bool cmParseGTMCoverage::ReadMCovFile(const char* file)
   while(  cmSystemTools::GetLineFromStream(in, line))
     {
     // only look at lines that have coverage data
-    if(line.find("^COVERAGE") == line.npos)
+    if(line.find("^ZZCOVERAGE") == line.npos)
       {
       continue;
       }

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

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


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list