From 7f552260c22b0f20142316695b4a7af88780c859 Mon Sep 17 00:00:00 2001 From: hoffman Date: Thu, 7 May 2009 22:22:54 +0000 Subject: [PATCH] ENH: add docs for command line ctest --- Source/ctest.cxx | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Source/ctest.cxx b/Source/ctest.cxx index ddd6bb7a3..73821c691 100644 --- a/Source/ctest.cxx +++ b/Source/ctest.cxx @@ -3,8 +3,8 @@ Program: CMake - Cross-Platform Makefile Generator Module: $RCSfile: ctest.cxx,v $ Language: C++ - Date: $Date: 2009-02-11 16:31:25 $ - Version: $Revision: 1.105 $ + Date: $Date: 2009-05-07 22:22:54 $ + Version: $Revision: 1.106 $ Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved. See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details. @@ -80,6 +80,10 @@ static const char * cmDocumentationOptions[][3] = {"-N,--show-only", "Disable actual execution of tests.", "This option tells ctest to list the tests that would be run but not " "actually run them. Useful in conjunction with the -R and -E options."}, + {"-L , --label-regex ", "Run tests with labels matching " + "regular expression.", + "This option tells ctest to run only the tests whose labels match the " + "given regular expression."}, {"-R , --tests-regex ", "Run tests matching regular " "expression.", "This option tells ctest to run only the tests whose names match the " @@ -88,6 +92,10 @@ static const char * cmDocumentationOptions[][3] = "expression.", "This option tells ctest to NOT run the tests whose names match the " "given regular expression."}, + {"-LE , --label-exclude ", "Exclude tests with labels " + "matching regular expression.", + "This option tells ctest to NOT run the tests whose labels match the " + "given regular expression."}, {"-D , --dashboard ", "Execute dashboard test", "This option tells ctest to perform act as a Dart client and perform " "a dashboard test. All tests are , where Mode can be " -- 2.11.4.GIT