summaryrefslogtreecommitdiffstats
path: root/Source/CTest/cmCTestTestHandler.h
diff options
context:
space:
mode:
authorZach Mullen <zach.mullen@kitware.com>2009-12-10 20:37:04 (GMT)
committerZach Mullen <zach.mullen@kitware.com>2009-12-10 20:37:04 (GMT)
commit4de7cc3621c723f76938063c10a4f8fc691ad58e (patch)
tree9ff9aa8fe77645b8d3c86f5cb8652adcdadde6b4 /Source/CTest/cmCTestTestHandler.h
parent48b613392848610d243962086fb289a93cc41f0d (diff)
downloadCMake-4de7cc3621c723f76938063c10a4f8fc691ad58e.zip
CMake-4de7cc3621c723f76938063c10a4f8fc691ad58e.tar.gz
CMake-4de7cc3621c723f76938063c10a4f8fc691ad58e.tar.bz2
Unfortunately, I noticed the comment on bug 8668 too late. This changes my last implementation of the exe wrapper to something which makes much more sense: a REQUIRED_FILES property on tests.
Diffstat (limited to 'Source/CTest/cmCTestTestHandler.h')
-rw-r--r--Source/CTest/cmCTestTestHandler.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/CTest/cmCTestTestHandler.h b/Source/CTest/cmCTestTestHandler.h
index eedd811..1afa3d3 100644
--- a/Source/CTest/cmCTestTestHandler.h
+++ b/Source/CTest/cmCTestTestHandler.h
@@ -66,8 +66,7 @@ public:
/*
* Add the test to the list of tests to be executed
*/
- bool AddTest(const std::vector<std::string>& args,
- const std::vector<std::string>& prefix);
+ bool AddTest(const std::vector<std::string>& args);
/*
* Set tests properties
@@ -85,7 +84,7 @@ public:
cmStdString Name;
cmStdString Directory;
std::vector<std::string> Args;
- std::vector<std::string> PrefixArgs;
+ std::vector<std::string> RequiredFiles;
std::vector<std::string> Depends;
std::vector<std::pair<cmsys::RegularExpression,
std::string> > ErrorRegularExpressions;