summaryrefslogtreecommitdiffstats
path: root/Source/CTest/cmCTestCoverageHandler.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2005-05-04 15:13:35 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2005-05-04 15:13:35 (GMT)
commit9619d54003970f9160b31ad6e04c85b1812faf3f (patch)
treee64ba872c0c683417d41dd884decce63c4488c9e /Source/CTest/cmCTestCoverageHandler.cxx
parent082b3b44d73b19aa1461eaa91e228317d9373d67 (diff)
downloadCMake-9619d54003970f9160b31ad6e04c85b1812faf3f.zip
CMake-9619d54003970f9160b31ad6e04c85b1812faf3f.tar.gz
CMake-9619d54003970f9160b31ad6e04c85b1812faf3f.tar.bz2
ENH: Improve syntax
Diffstat (limited to 'Source/CTest/cmCTestCoverageHandler.cxx')
-rw-r--r--Source/CTest/cmCTestCoverageHandler.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/CTest/cmCTestCoverageHandler.cxx b/Source/CTest/cmCTestCoverageHandler.cxx
index f5872ea..de42576 100644
--- a/Source/CTest/cmCTestCoverageHandler.cxx
+++ b/Source/CTest/cmCTestCoverageHandler.cxx
@@ -165,8 +165,8 @@ int cmCTestCoverageHandler::ProcessHandler()
cmSystemTools::ConvertToUnixSlashes(sourceDir);
cmSystemTools::ConvertToUnixSlashes(binaryDir);
- std::string asfGlob = sourceDir + "/*";
- std::string abfGlob = binaryDir + "/*";
+ //std::string asfGlob = sourceDir + "/*";
+ //std::string abfGlob = binaryDir + "/*";
std::string daGlob = binaryDir + "/*.da";
std::string gcovOutputRex = "[0-9]+\\.[0-9]+% of [0-9]+ (source |)lines executed in file (.*)$";
std::string gcovOutputRex2 = "^Creating (.*\\.gcov)\\.";
@@ -347,8 +347,8 @@ int cmCTestCoverageHandler::ProcessHandler()
int cnt = 0;
long total_tested = 0;
long total_untested = 0;
- std::string fullSourceDir = sourceDir + "/";
- std::string fullBinaryDir = binaryDir + "/";
+ //std::string fullSourceDir = sourceDir + "/";
+ //std::string fullBinaryDir = binaryDir + "/";
for ( fileIterator = totalCoverage.begin();
fileIterator != totalCoverage.end();
++fileIterator )