add_test — CMake 3.24.4 Documentation (original) (raw)
Add a test to the project to be run by ctest(1).
add_test(NAME COMMAND [...] [CONFIGURATIONS ...] [WORKING_DIRECTORY ] [COMMAND_EXPAND_LISTS])
Adds a test called <name>
. The test name may contain arbitrary characters, expressed as a Quoted Argument or Bracket Argumentif necessary. See policy CMP0110. The options are:
COMMAND
Specify the test command-line. 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.
The command may be specified usinggenerator expressions.
CONFIGURATIONS
Restrict execution of the test only to the named configurations.
WORKING_DIRECTORY
Set the 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.
The working directory may be specified usinggenerator expressions.
COMMAND_EXPAND_LISTS
New in version 3.16.
Lists in COMMAND
arguments will be expanded, including those created withgenerator expressions.
The given test command is expected to exit with code 0
to pass and non-zero to fail, or vice-versa if the WILL_FAIL test property is set. Any output written to stdout or stderr will be captured by ctest(1) but does not affect the pass/fail status unless the PASS_REGULAR_EXPRESSION,FAIL_REGULAR_EXPRESSION orSKIP_REGULAR_EXPRESSION test property is used.
Tests added with the add_test(NAME)
signature support usinggenerator expressionsin test properties set by set_property(TEST) orset_tests_properties().
Example usage:
add_test(NAME mytest COMMAND testDriver --config $ --exe $<TARGET_FILE:myexe>)
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
.
Note
CMake will generate tests only if the enable_testing()command has been invoked. The CTest module invokes the command automatically unless the BUILD_TESTING
option is turnedOFF
.
This command also supports a simpler, but less flexible, signature:
add_test( [...])
Add a test called <name>
with the given command-line.
Unlike the above NAME
signature, target names are not supported in the command-line. Furthermore, tests added with this signature do not support generator expressionsin the command-line or test properties.