diff options
author | Brad King <brad.king@kitware.com> | 2009-01-27 15:58:33 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-01-27 15:58:33 (GMT) |
commit | 5527ca5524bebbf9373edf97826fcc4cb3651c59 (patch) | |
tree | d3228710857d6843482517f866c7f450ad446579 /Source/cmCTest.h | |
parent | 6ae2f8e7ee589d09582155f156b58a509ae97501 (diff) | |
download | CMake-5527ca5524bebbf9373edf97826fcc4cb3651c59.zip CMake-5527ca5524bebbf9373edf97826fcc4cb3651c59.tar.gz CMake-5527ca5524bebbf9373edf97826fcc4cb3651c59.tar.bz2 |
BUG: Reset file submission list on test restart
When running in script mode it is possible to run multiple separate
dashboard submissions in one cmCTest instance. The recent refactoring
of file submission lists into parts failed to clear the submission lists
when starting a new dashboard (ctest_start or ctest_update). Only the
unused old submission set was cleared. This fixes the refactored
version to remove the old submission set completely and also clear the
part-wise lists.
Diffstat (limited to 'Source/cmCTest.h')
-rw-r--r-- | Source/cmCTest.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h index b949378..7c3d41e 100644 --- a/Source/cmCTest.h +++ b/Source/cmCTest.h @@ -478,7 +478,6 @@ private: int DartVersion; - std::set<cmStdString> SubmitFiles; std::vector<cmStdString> InitialCommandLineArguments; int SubmitIndex; |