Browse Source

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
Joseph Snyder 13 years ago
parent
commit
1b418f1fbf
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/CTest/cmParseGTMCoverage.cxx

+ 1 - 1
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;
       }