diff options
author | Craig Scott <craig.scott@crascit.com> | 2017-04-22 09:38:55 (GMT) |
---|---|---|
committer | Craig Scott <craig.scott@crascit.com> | 2017-05-01 15:54:13 (GMT) |
commit | c1b2b7c03c899c9b066840600ec15b16ae2fa9ac (patch) | |
tree | 588318387fddce99535d6f90637cfd670e2a24b8 /Source/CTest/cmCTestTestHandler.h | |
parent | 02d11868827417e88cbbee795703421dfdb342f6 (diff) | |
download | CMake-c1b2b7c03c899c9b066840600ec15b16ae2fa9ac.zip CMake-c1b2b7c03c899c9b066840600ec15b16ae2fa9ac.tar.gz CMake-c1b2b7c03c899c9b066840600ec15b16ae2fa9ac.tar.bz2 |
Add ctest options for limiting which tests fixtures add
The new options allow the user to restrict the setup and cleanup tests
automatically added for fixtures.
Diffstat (limited to 'Source/CTest/cmCTestTestHandler.h')
-rw-r--r-- | Source/CTest/cmCTestTestHandler.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/CTest/cmCTestTestHandler.h b/Source/CTest/cmCTestTestHandler.h index 3700f8a..0edcb14 100644 --- a/Source/CTest/cmCTestTestHandler.h +++ b/Source/CTest/cmCTestTestHandler.h @@ -280,6 +280,9 @@ private: std::string ExcludeLabelRegExp; std::string IncludeRegExp; std::string ExcludeRegExp; + std::string ExcludeFixtureRegExp; + std::string ExcludeFixtureSetupRegExp; + std::string ExcludeFixtureCleanupRegExp; cmsys::RegularExpression IncludeLabelRegularExpression; cmsys::RegularExpression ExcludeLabelRegularExpression; cmsys::RegularExpression IncludeTestsRegularExpression; |