summaryrefslogtreecommitdiffstats
path: root/Source/CTest
diff options
context:
space:
mode:
authorJoseph Snyder <joe.snyder@kitware.com>2012-05-07 18:12:51 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2012-05-07 19:29:52 (GMT)
commit1b418f1fbfdeea561cc175929ac677d93e523e41 (patch)
tree5f509ae06ebc3dbbafe75904de32f99df96efeb7 /Source/CTest
parentb0c07a13d1ee034875c2067f35bd39a9ffef7954 (diff)
downloadCMake-1b418f1fbfdeea561cc175929ac677d93e523e41.zip
CMake-1b418f1fbfdeea561cc175929ac677d93e523e41.tar.gz
CMake-1b418f1fbfdeea561cc175929ac677d93e523e41.tar.bz2
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
Diffstat (limited to 'Source/CTest')
-rw-r--r--Source/CTest/cmParseGTMCoverage.cxx2
1 files changed, 1 insertions, 1 deletions
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;
}