diff options
author | Alex Neundorf <neundorf@kde.org> | 2023-12-03 16:59:10 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2024-01-25 17:38:04 (GMT) |
commit | 701029726f17759a84b963e2f318742a1761670a (patch) | |
tree | 50f7433fa86cb9a74bead4214cae34e44500a48e /Source/CTest/cmCTestTestCommand.h | |
parent | dbacc1d5a8c189289fe651ed9db892d9639354c6 (diff) | |
download | CMake-701029726f17759a84b963e2f318742a1761670a.zip CMake-701029726f17759a84b963e2f318742a1761670a.tar.gz CMake-701029726f17759a84b963e2f318742a1761670a.tar.bz2 |
ctest_test: add options INCLUDE_FROM_FILE and EXCLUDE_FROM_FILE
These options can be used to specify files which can be used
to restrict the set of tests that will be executed.
Fixes: #25455
Diffstat (limited to 'Source/CTest/cmCTestTestCommand.h')
-rw-r--r-- | Source/CTest/cmCTestTestCommand.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/CTest/cmCTestTestCommand.h b/Source/CTest/cmCTestTestCommand.h index 24e74e2..ce054ed 100644 --- a/Source/CTest/cmCTestTestCommand.h +++ b/Source/CTest/cmCTestTestCommand.h @@ -51,6 +51,8 @@ protected: std::string Include; std::string ExcludeLabel; std::string IncludeLabel; + std::string IncludeTestsFromFile; + std::string ExcludeTestsFromFile; std::string ExcludeFixture; std::string ExcludeFixtureSetup; std::string ExcludeFixtureCleanup; |