From 1b418f1fbfdeea561cc175929ac677d93e523e41 Mon Sep 17 00:00:00 2001 From: Joseph Snyder Date: Mon, 7 May 2012 14:12:51 -0400 Subject: [PATCH] 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 --- Source/CTest/cmParseGTMCoverage.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/CTest/cmParseGTMCoverage.cxx b/Source/CTest/cmParseGTMCoverage.cxx index f850c3cce..e1f02d636 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; }