diff options
author | Joseph Snyder <joe.snyder@kitware.com> | 2012-05-07 18:12:51 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2012-05-07 19:29:52 (GMT) |
commit | 1b418f1fbfdeea561cc175929ac677d93e523e41 (patch) | |
tree | 5f509ae06ebc3dbbafe75904de32f99df96efeb7 /Source | |
parent | b0c07a13d1ee034875c2067f35bd39a9ffef7954 (diff) | |
download | CMake-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')
-rw-r--r-- | Source/CTest/cmParseGTMCoverage.cxx | 2 |
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; } |