diff options
author | Brad King <brad.king@kitware.com> | 2010-12-14 19:38:13 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2010-12-14 19:38:13 (GMT) |
commit | 24b251ac555a7cb1d3fa8fb4cfc8d0bbb38aac3d (patch) | |
tree | 3a6480850699540ea4050e9cf925d9b19a4ded93 | |
parent | b0dffc7e9ca010e42e5baac9623493423664abe8 (diff) | |
parent | 7145ca67fcc252e63b10f5a301683701f1b6a69c (diff) | |
download | CMake-24b251ac555a7cb1d3fa8fb4cfc8d0bbb38aac3d.zip CMake-24b251ac555a7cb1d3fa8fb4cfc8d0bbb38aac3d.tar.gz CMake-24b251ac555a7cb1d3fa8fb4cfc8d0bbb38aac3d.tar.bz2 |
Merge topic 'doc-ctest_sleep'
7145ca6 CTest: Fix ctest_sleep documentation (#11554)
-rw-r--r-- | Source/CTest/cmCTestSleepCommand.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Source/CTest/cmCTestSleepCommand.h b/Source/CTest/cmCTestSleepCommand.h index 411eb01..468cd85 100644 --- a/Source/CTest/cmCTestSleepCommand.h +++ b/Source/CTest/cmCTestSleepCommand.h @@ -63,11 +63,10 @@ public: virtual const char* GetFullDocumentation() { return - " ctest_sleep( seconds )\n" - " ctest_sleep( time1 duration time2 )\n" - "With one argument it will sleep for a given number of seconds. " - "With three arguments it will wait for time2 - time1 - duration " - "seconds."; + " ctest_sleep(<seconds>)\n" + "Sleep for given number of seconds.\n" + " ctest_sleep(<time1> <duration> <time2>)\n" + "Sleep for t=(time1 + duration - time2) seconds if t > 0."; } cmTypeMacro(cmCTestSleepCommand, cmCTestCommand); |