summaryrefslogtreecommitdiffstats
path: root/Help/command
diff options
context:
space:
mode:
authorMatt McCormick <matt.mccormick@kitware.com>2014-12-30 01:47:48 (GMT)
committerBrad King <brad.king@kitware.com>2015-08-03 13:22:25 (GMT)
commit14e49ed15615e7f2bcb58aa4540683250006f5c7 (patch)
treefad463f1cb96d9da2ee65bee42e8e6a251aec971 /Help/command
parent623dcc85a447b9ce0f09cffa8cd296cd8a51ad9d (diff)
downloadCMake-14e49ed15615e7f2bcb58aa4540683250006f5c7.zip
CMake-14e49ed15615e7f2bcb58aa4540683250006f5c7.tar.gz
CMake-14e49ed15615e7f2bcb58aa4540683250006f5c7.tar.bz2
if: Add "TEST <test>" condition
if(TEST TestNameThatExists) will return true if a test with the name TestNameThatExists has been added with add_test. The syntax is similar to if(TARGET TargetName). Since use of "TEST" as an argument to if() could previously be interpreted as a non-keyword argument, add policy CMP0064 to treat it as a keyword as NEW behavior.
Diffstat (limited to 'Help/command')
-rw-r--r--Help/command/if.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Help/command/if.rst b/Help/command/if.rst
index 396becf..2465bde 100644
--- a/Help/command/if.rst
+++ b/Help/command/if.rst
@@ -71,6 +71,10 @@ Possible expressions are:
created by the :command:`add_executable`, :command:`add_library`, or
:command:`add_custom_target` commands.
+``if(TEST test-name)``
+ True if the given name is an existing test name created by the
+ :command:`add_test` command.
+
``if(EXISTS path-to-file-or-directory)``
True if the named file or directory exists. Behavior is well-defined
only for full paths.