diff options
author | Ken Martin <ken.martin@kitware.com> | 2007-10-09 18:35:25 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2007-10-09 18:35:25 (GMT) |
commit | 35e13b11f3cce42944e367543b082e7774201e50 (patch) | |
tree | 20d811344c7e488cebe7596016601eb71cc12014 /Source/ctest.cxx | |
parent | 18ce24c7486fedc792276721515c9ddefc62ebee (diff) | |
download | CMake-35e13b11f3cce42944e367543b082e7774201e50.zip CMake-35e13b11f3cce42944e367543b082e7774201e50.tar.gz CMake-35e13b11f3cce42944e367543b082e7774201e50.tar.bz2 |
BUG: revert doc changes since VS7 cannot compile them, will implement them in a different manner
Diffstat (limited to 'Source/ctest.cxx')
-rw-r--r-- | Source/ctest.cxx | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/Source/ctest.cxx b/Source/ctest.cxx index f085036..5dedcc4 100644 --- a/Source/ctest.cxx +++ b/Source/ctest.cxx @@ -25,28 +25,28 @@ //---------------------------------------------------------------------------- static const cmDocumentationEntry cmDocumentationName[] = { - {"", - " ctest - Testing driver provided by CMake.", ""}, - {"","",""} + {0, + " ctest - Testing driver provided by CMake.", 0}, + {0,0,0} }; //---------------------------------------------------------------------------- static const cmDocumentationEntry cmDocumentationUsage[] = { - {"", - " ctest [options]", ""}, - {"","",""} + {0, + " ctest [options]", 0}, + {0,0,0} }; //---------------------------------------------------------------------------- static const cmDocumentationEntry cmDocumentationDescription[] = { - {"", + {0, "The \"ctest\" executable is the CMake test driver program. " "CMake-generated build trees created for projects that use " "the ENABLE_TESTING and ADD_TEST commands have testing support. " - "This program will run the tests and report results.", ""}, - {"","",""} + "This program will run the tests and report results.", 0}, + {0,0,0} }; //---------------------------------------------------------------------------- @@ -194,15 +194,15 @@ static const cmDocumentationEntry cmDocumentationOptions[] = "This option allows performing the same CTest action (such as test) " "multiple times and submit all stages to the same dashboard (Dart2 " "required). Each execution requires different index." }, - {"","",""} + {0,0,0} }; //---------------------------------------------------------------------------- static const cmDocumentationEntry cmDocumentationSeeAlso[] = { - {"", "cmake", ""}, - {"", "ccmake", ""}, - {"", "", ""} + {0, "cmake", 0}, + {0, "ccmake", 0}, + {0, 0, 0} }; // this is a test driver program for cmCTest. |