diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2004-04-13 20:32:29 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2004-04-13 20:32:29 (GMT) |
commit | b1032dd8e1579bc38758e066fedbe7524446fdad (patch) | |
tree | 3339d9960ca687cab47d088e91535eef0451c01c /Source/cmCTest.h | |
parent | 96d04f05d96d8a55472b76f59da675f33b3f182a (diff) | |
download | CMake-b1032dd8e1579bc38758e066fedbe7524446fdad.zip CMake-b1032dd8e1579bc38758e066fedbe7524446fdad.tar.gz CMake-b1032dd8e1579bc38758e066fedbe7524446fdad.tar.bz2 |
ENH: add the ability to run a limited sub-set of the tests
Diffstat (limited to 'Source/cmCTest.h')
-rw-r--r-- | Source/cmCTest.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h index d242d69..e2fa0fa 100644 --- a/Source/cmCTest.h +++ b/Source/cmCTest.h @@ -157,6 +157,8 @@ public: const char *backupSrc, const char *backupBin); private: + void SetTestsToRunInformation(const char*); + enum { FIRST_TEST = 0, UPDATE_TEST = 1, @@ -330,6 +332,8 @@ private: bool m_BuildNoClean; bool m_BuildNoCMake; std::string m_NotesFiles; + std::vector<int> m_TestsToRun; + int ReadCustomConfigurationFileTree(const char* dir); void PopulateCustomVector(cmMakefile* mf, const char* definition, tm_VectorOfStrings& vec); |