diff options
author | Zach Mullen <zach.mullen@kitware.com> | 2009-12-10 20:37:04 (GMT) |
---|---|---|
committer | Zach Mullen <zach.mullen@kitware.com> | 2009-12-10 20:37:04 (GMT) |
commit | 4de7cc3621c723f76938063c10a4f8fc691ad58e (patch) | |
tree | 9ff9aa8fe77645b8d3c86f5cb8652adcdadde6b4 /Source/cmAddTestCommand.h | |
parent | 48b613392848610d243962086fb289a93cc41f0d (diff) | |
download | CMake-4de7cc3621c723f76938063c10a4f8fc691ad58e.zip CMake-4de7cc3621c723f76938063c10a4f8fc691ad58e.tar.gz CMake-4de7cc3621c723f76938063c10a4f8fc691ad58e.tar.bz2 |
Unfortunately, I noticed the comment on bug 8668 too late. This changes my last implementation of the exe wrapper to something which makes much more sense: a REQUIRED_FILES property on tests.
Diffstat (limited to 'Source/cmAddTestCommand.h')
-rw-r--r-- | Source/cmAddTestCommand.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Source/cmAddTestCommand.h b/Source/cmAddTestCommand.h index a360ac0..79fb481 100644 --- a/Source/cmAddTestCommand.h +++ b/Source/cmAddTestCommand.h @@ -56,8 +56,7 @@ public: virtual const char* GetFullDocumentation() { return - " add_test(testname Exename arg1 arg2 ... \n" - " [EXEC_PREFIX_CMD wrapperExe args...])\n" + " add_test(testname Exename arg1 arg2 ... )\n" "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. " @@ -67,9 +66,6 @@ public: "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.\n" - "Use EXEC_PREFIX_CMD to wrap an executable built by this project " - "in another executable such as mpiexec. This will only run the " - "test if the wrapped executable was built." "\n" " add_test(NAME <name> [CONFIGURATIONS [Debug|Release|...]]\n" " COMMAND <command> [arg1 [arg2 ...]])\n" |