diff options
author | Brad King <brad.king@kitware.com> | 2009-03-11 17:31:33 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-03-11 17:31:33 (GMT) |
commit | 5bc17136a36f837970d2d6fa83ce0bf84157b321 (patch) | |
tree | 6e7546fa4ba2b2b808cb0b38b197f02c12615a5d /Source/cmCTest.h | |
parent | f3e713ba653c1b435c6308474d07eeaffcc9620f (diff) | |
download | CMake-5bc17136a36f837970d2d6fa83ce0bf84157b321.zip CMake-5bc17136a36f837970d2d6fa83ce0bf84157b321.tar.gz CMake-5bc17136a36f837970d2d6fa83ce0bf84157b321.tar.bz2 |
BUG: Do not carry over file list between coverage
When performing multiple ctest_coverage() commands in a single CTest
instance we need to clear the list of CoverageLog-*.xml files for
submission. Otherwise if the current coverage run produces fewer log
files than the previous run CTest will attempt to submit non-existing
files.
Diffstat (limited to 'Source/cmCTest.h')
-rw-r--r-- | Source/cmCTest.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h index 5e1612e..5eca3c3 100644 --- a/Source/cmCTest.h +++ b/Source/cmCTest.h @@ -358,6 +358,7 @@ public: void AddSubmitFile(Part part, const char* name); std::vector<std::string> const& GetSubmitFiles(Part part) { return this->Parts[part].SubmitFiles; } + void ClearSubmitFiles(Part part) { this->Parts[part].SubmitFiles.clear(); } //! Read the custom configuration files and apply them to the current ctest int ReadCustomConfigurationFileTree(const char* dir, cmMakefile* mf); |