diff options
author | Craig Scott <craig.scott@crascit.com> | 2021-11-14 05:49:23 (GMT) |
---|---|---|
committer | Craig Scott <craig.scott@crascit.com> | 2021-11-14 05:49:23 (GMT) |
commit | 1ef54f3163a5c0835a2e214772d7170c9aeab0b1 (patch) | |
tree | b4c3ed0a5cc8cea0fd0d1c60b0dcc1434df5b5d1 /Modules/GoogleTest.cmake | |
parent | fed67fa40d7b6e34ee7c8565694bd54af61aed73 (diff) | |
download | CMake-1ef54f3163a5c0835a2e214772d7170c9aeab0b1.zip CMake-1ef54f3163a5c0835a2e214772d7170c9aeab0b1.tar.gz CMake-1ef54f3163a5c0835a2e214772d7170c9aeab0b1.tar.bz2 |
Help: Clarify meaning of filter expression in gtest_discover_tests()
Diffstat (limited to 'Modules/GoogleTest.cmake')
-rw-r--r-- | Modules/GoogleTest.cmake | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Modules/GoogleTest.cmake b/Modules/GoogleTest.cmake index a483c03..efc33e3 100644 --- a/Modules/GoogleTest.cmake +++ b/Modules/GoogleTest.cmake @@ -208,8 +208,11 @@ same as the Google Test name (i.e. ``suite.testcase``); see also ``TEST_FILTER expr`` .. versionadded:: 3.22 - Filter expression to pass to ``--gtest_filter`` argument during test - discovery. + Filter expression to pass as a ``--gtest_filter`` argument during test + discovery. Note that the expression is a wildcard-based format that + matches against the original test names as used by gtest. For type or + value-parameterized tests, these names may be different to the potentially + pretty-printed test names that ``ctest`` uses. ``NO_PRETTY_TYPES`` By default, the type index of type-parameterized tests is replaced by the |