summaryrefslogtreecommitdiffstats
path: root/Help/prop_test
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2022-11-18 15:37:04 (GMT)
committerBen Boeckel <ben.boeckel@kitware.com>2022-11-18 19:09:32 (GMT)
commitc36910476a9c41c22b0abaa028b0dd2a8f7d7e40 (patch)
treee0292c03ed1ef3fa2e730fab28633473ba44cbcf /Help/prop_test
parent391c53a851eaffae40b210c3cdefd31d86b45f90 (diff)
downloadCMake-c36910476a9c41c22b0abaa028b0dd2a8f7d7e40.zip
CMake-c36910476a9c41c22b0abaa028b0dd2a8f7d7e40.tar.gz
CMake-c36910476a9c41c22b0abaa028b0dd2a8f7d7e40.tar.bz2
Help: remove links from pages to themselves
At least the top-reference links. Internal `:ref:` usages have been left intact.
Diffstat (limited to 'Help/prop_test')
-rw-r--r--Help/prop_test/TIMEOUT_AFTER_MATCH.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Help/prop_test/TIMEOUT_AFTER_MATCH.rst b/Help/prop_test/TIMEOUT_AFTER_MATCH.rst
index 726dcab..aa17590 100644
--- a/Help/prop_test/TIMEOUT_AFTER_MATCH.rst
+++ b/Help/prop_test/TIMEOUT_AFTER_MATCH.rst
@@ -28,14 +28,14 @@ variable if either of these are set. Because the test's start time is
reset, its execution time will not include any time that was spent
waiting for the matching output.
-:prop_test:`TIMEOUT_AFTER_MATCH` is useful for avoiding spurious
+``TIMEOUT_AFTER_MATCH`` is useful for avoiding spurious
timeouts when your test must wait for some system resource to become
available before it can execute. Set :prop_test:`TIMEOUT` to a longer
duration that accounts for resource acquisition and use
-:prop_test:`TIMEOUT_AFTER_MATCH` to control how long the actual test
+``TIMEOUT_AFTER_MATCH`` to control how long the actual test
is allowed to run.
If the required resource can be controlled by CTest you should use
-:prop_test:`RESOURCE_LOCK` instead of :prop_test:`TIMEOUT_AFTER_MATCH`.
+:prop_test:`RESOURCE_LOCK` instead of ``TIMEOUT_AFTER_MATCH``.
This property should be used when only the test itself can determine
when its required resources are available.