ENH: clean up docs some

This commit is contained in:
Bill Hoffman
2002-12-30 07:47:03 -05:00
parent 1bf59ded66
commit 455b262cfe
10 changed files with 33 additions and 20 deletions

View File

@@ -67,12 +67,12 @@ public:
virtual const char* GetFullDocumentation()
{
return
"ADD_TEST(testname exename arg1 arg2 arg3 ...)\n"
"ADD_TEST(testname Exename arg1 arg2 arg3 ...)\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.\n"
"The tests are run by the testing subsystem by executing exename "
"with the specified arguments. exename can be either an executable "
"The tests are run by the testing subsystem by executing Exename "
"with the specified arguments. Exename can be either an executable "
"built by built by this project or an arbitrary executable on the "
"system (like tclsh).";
}