diff options
author | Brad King <brad.king@kitware.com> | 2024-03-08 21:07:36 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2024-03-08 21:25:33 (GMT) |
commit | 1a4837641e8fad5d8a0c611ca1c70543c5748fe2 (patch) | |
tree | 7155dfda7d5000b14d5f9992a6d773103c371542 /Help | |
parent | d52c66bfb3ec6bbf79fab9ef6ff4cdc9ba27a45b (diff) | |
download | CMake-1a4837641e8fad5d8a0c611ca1c70543c5748fe2.zip CMake-1a4837641e8fad5d8a0c611ca1c70543c5748fe2.tar.gz CMake-1a4837641e8fad5d8a0c611ca1c70543c5748fe2.tar.bz2 |
ctest: Remove unnecessary and ambiguous tests-from-file comment syntax
Test names can contain `#`. Since we ignore lines that do not match any
test names anyway, "commenting" can still work without explicit syntax.
Also drop whitespace trimming for similar reasons.
Fixes: #25741
Diffstat (limited to 'Help')
-rw-r--r-- | Help/manual/ctest.1.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Help/manual/ctest.1.rst b/Help/manual/ctest.1.rst index 602a82d..aa95ac6 100644 --- a/Help/manual/ctest.1.rst +++ b/Help/manual/ctest.1.rst @@ -242,7 +242,7 @@ Run Tests This option tells CTest to run the tests which are listed in the given file. The file must contain one exact test name per line. - Lines can be commented out using a ``#``. + Lines that do not exactly match any test names are ignored. This option can be combined with the other options like ``-R``, ``-E``, ``-L`` or ``-LE``. @@ -254,7 +254,7 @@ Run Tests This option tells CTest to NOT run the tests which are listed in the given file. The file must contain one exact test name per line. - Lines can be commented out using a ``#``. + Lines that do not exactly match any test names are ignored. This option can be combined with the other options like ``-R``, ``-E``, ``-L`` or ``-LE``. |