From 8afa5fe8ce112093ce0f8373dee086efa7974878 Mon Sep 17 00:00:00 2001 From: Brad King Date: Thu, 20 Feb 2014 08:58:13 -0500 Subject: [PATCH] Help: Revise and format add_test() command documentation Favor the add_test(NAME) signature and document the limitations of the plain signature. --- Help/command/add_test.rst | 92 +++++++++++++++++---------------------- 1 file changed, 41 insertions(+), 51 deletions(-) diff --git a/Help/command/add_test.rst b/Help/command/add_test.rst index 57145598f..7e7e6bddd 100644 --- a/Help/command/add_test.rst +++ b/Help/command/add_test.rst @@ -1,69 +1,59 @@ add_test -------- -Add a test to the project with the specified arguments. +Add a test to the project to be run by :manual:`ctest(1)`. :: - add_test(testname Exename arg1 arg2 ... ) + add_test(NAME COMMAND [...] + [CONFIGURATIONS ...] + [WORKING_DIRECTORY ]) -If the ENABLE_TESTING command has been run, this command adds a test -target to the current directory. If ENABLE_TESTING has not been run, -this command does nothing. The tests are run by the testing subsystem -by executing Exename with the specified arguments. Exename can be -either an executable built by this project or an arbitrary executable -on the system (like tclsh). The test will be run with the current -working directory set to the CMakeList.txt files corresponding -directory in the binary tree. Tests added using this signature do not -support generator expressions. +Add a test called ````. The test name may not contain spaces, +quotes, or other characters special in CMake syntax. The options are: +``COMMAND`` + Specify the test command-line. If ```` specifies an + executable target (created by :command:`add_executable`) it will + automatically be replaced by the location of the executable created + at build time. +``CONFIGURATIONS`` + Restrict execution of the test only to the named configurations. -:: +``WORKING_DIRECTORY`` + Set the :prop_test:`WORKING_DIRECTORY` test property to + specify the working directory in which to execute the test. + If not specified the test will be run with the current working + directory set to the build directory corresponding to the + current source directory. - add_test(NAME [CONFIGURATIONS [Debug|Release|...]] - [WORKING_DIRECTORY dir] - COMMAND [arg1 [arg2 ...]]) +The ``COMMAND`` and ``WORKING_DIRECTORY`` options may use "generator +expressions" with the syntax ``$<...>``. See the +:manual:`cmake-generator-expressions(7)` manual for available expressions. -Add a test called . The test name may not contain spaces, -quotes, or other characters special in CMake syntax. If COMMAND -specifies an executable target (created by add_executable) it will -automatically be replaced by the location of the executable created at -build time. If a CONFIGURATIONS option is given then the test will be -executed only when testing under one of the named configurations. If -a WORKING_DIRECTORY option is given then the test will be executed in -the given directory. - -Arguments after COMMAND may use "generator expressions" with the syntax -``$<...>``. See the :manual:`cmake-generator-expressions(7)` manual for -available expressions. - -Note that tgt is not added as a dependency of the target this -expression is evaluated on. - -:: - - $ = '1' if the policy was NEW when the 'head' target was created, else '0'. If the policy was not set, the warning message for the policy will be emitted. This generator expression only works for a subset of policies. - $ = Content of the install prefix when the target is exported via INSTALL(EXPORT) and empty otherwise. - -Boolean expressions: - -:: - - $ = '1' if all '?' are '1', else '0' - $ = '0' if all '?' are '0', else '1' - $ = '0' if '?' is '1', else '1' - -where '?' is always either '0' or '1'. - -Example usage: - -:: +Example usage:: add_test(NAME mytest COMMAND testDriver --config $ --exe $) -This creates a test "mytest" whose command runs a testDriver tool +This creates a test ``mytest`` whose command runs a ``testDriver`` tool passing the configuration name and the full path to the executable -file produced by target "myexe". +file produced by target ``myexe``. + +.. note:: + + CMake will generate tests only if the :command:`enable_testing` + command has been invoked. The :module:`CTest` module invokes the + command automatically when the ``BUILD_TESTING`` option is ``ON``. + +--------------------------------------------------------------------- + +:: + + add_test( [...]) + +Add a test called ```` with the given command-line. Unlike +the above ``NAME`` signature no transformation is performed on the +command-line to support target names or generator expressions.