summaryrefslogtreecommitdiffstats
path: root/Source/CTest/cmCTestSleepCommand.h
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2008-05-12 13:11:51 (GMT)
committerAlexander Neundorf <neundorf@kde.org>2008-05-12 13:11:51 (GMT)
commit39bf28f5d2d4ecaae261d64a3f56c98e152a2237 (patch)
treef6f632dd318cf8b154914bbe22bb28d7972cda90 /Source/CTest/cmCTestSleepCommand.h
parentab2cb66dd852cdd4330736f8ed5b5e03825f954b (diff)
downloadCMake-39bf28f5d2d4ecaae261d64a3f56c98e152a2237.zip
CMake-39bf28f5d2d4ecaae261d64a3f56c98e152a2237.tar.gz
CMake-39bf28f5d2d4ecaae261d64a3f56c98e152a2237.tar.bz2
STYLE: use lower case also for the ctest-specific commands, as in cmake
I hope I didn't make a typo anywhere, at least the tests still succeed Alex
Diffstat (limited to 'Source/CTest/cmCTestSleepCommand.h')
-rw-r--r--Source/CTest/cmCTestSleepCommand.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/CTest/cmCTestSleepCommand.h b/Source/CTest/cmCTestSleepCommand.h
index dcc1026..90b4482 100644
--- a/Source/CTest/cmCTestSleepCommand.h
+++ b/Source/CTest/cmCTestSleepCommand.h
@@ -52,7 +52,7 @@ public:
/**
* The name of the command as specified in CMakeList.txt.
*/
- virtual const char* GetName() { return "CTEST_SLEEP";}
+ virtual const char* GetName() { return "ctest_sleep";}
/**
* Succinct documentation.
@@ -68,8 +68,8 @@ public:
virtual const char* GetFullDocumentation()
{
return
- " CTEST_SLEEP( seconds )\n"
- " CTEST_SLEEP( time1 duration time2 )\n"
+ " 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.";