summaryrefslogtreecommitdiffstats
path: root/Help
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2015-03-23 13:18:26 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2015-03-23 13:18:26 (GMT)
commitcc8b8cdc751ff2dfa6e77a69da542d6aef066346 (patch)
tree53088db771ef7cebaf89157fe4b081e4417a74b2 /Help
parentd67196d0e8c5e9feb99d3a609d060f52ad8b9a59 (diff)
parent6bce027662588b972602e2e74c16a1883ed853cf (diff)
downloadCMake-cc8b8cdc751ff2dfa6e77a69da542d6aef066346.zip
CMake-cc8b8cdc751ff2dfa6e77a69da542d6aef066346.tar.gz
CMake-cc8b8cdc751ff2dfa6e77a69da542d6aef066346.tar.bz2
Merge topic 'ctest-repeat-until-fail'
6bce0276 Help: Add notes for topic 'ctest-repeat-until-fail' fde70a1b ctest: Add a new --repeat-until-fail option
Diffstat (limited to 'Help')
-rw-r--r--Help/manual/ctest.1.rst5
-rw-r--r--Help/release/dev/ctest-repeat-until-fail.rst5
2 files changed, 10 insertions, 0 deletions
diff --git a/Help/manual/ctest.1.rst b/Help/manual/ctest.1.rst
index cc132c2..dd3bcfb 100644
--- a/Help/manual/ctest.1.rst
+++ b/Help/manual/ctest.1.rst
@@ -194,6 +194,11 @@ Options
subsequent calls to ctest with the --rerun-failed option will run
the set of tests that most recently failed (if any).
+``--repeat-until-fail <n>``
+ Require each test to run ``<n>`` times without failing in order to pass.
+
+ This is useful in finding sporadic failures in test cases.
+
``--max-width <width>``
Set the max width for a test name to output
diff --git a/Help/release/dev/ctest-repeat-until-fail.rst b/Help/release/dev/ctest-repeat-until-fail.rst
new file mode 100644
index 0000000..8a679c6
--- /dev/null
+++ b/Help/release/dev/ctest-repeat-until-fail.rst
@@ -0,0 +1,5 @@
+ctest-repeat-until-fail
+-----------------------
+
+* The :manual:`ctest(1)` tool learned a new ``--repeat-until-fail <n>``
+ option to help find sporadic test failures.