diff options
author | Brad King <brad.king@kitware.com> | 2014-10-06 13:41:23 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2014-10-06 13:41:23 (GMT) |
commit | 3f9191932262f2279a7d25bf0dbb2fc224bd27cb (patch) | |
tree | d6a56a8e9746f73fe36620b7c60ad3473585cb65 /Source | |
parent | c74d2ddfa47792326c6d8b74df8816e27ad87e4c (diff) | |
parent | 1c838addf590f8ae67e43f0eb02a6e02b46264f3 (diff) | |
download | CMake-3f9191932262f2279a7d25bf0dbb2fc224bd27cb.zip CMake-3f9191932262f2279a7d25bf0dbb2fc224bd27cb.tar.gz CMake-3f9191932262f2279a7d25bf0dbb2fc224bd27cb.tar.bz2 |
Merge topic 'fix-cobertura-parsing'
1c838add cmParseCoberturaCoverage: Initialize CurFileName to empty string
Diffstat (limited to 'Source')
-rw-r--r-- | Source/CTest/cmParseCoberturaCoverage.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/CTest/cmParseCoberturaCoverage.cxx b/Source/CTest/cmParseCoberturaCoverage.cxx index 6b98056..0742be1 100644 --- a/Source/CTest/cmParseCoberturaCoverage.cxx +++ b/Source/CTest/cmParseCoberturaCoverage.cxx @@ -71,6 +71,7 @@ protected: cmCTestLog(this->CTest, HANDLER_VERBOSE_OUTPUT, "Reading file: " << atts[tagCount+1]<< std::endl); std::string filename = atts[tagCount+1]; + this->CurFileName = ""; for(size_t i=0;i < FilePaths.size();i++) { finalpath = FilePaths[i] + "/" + filename; |