From f5c98591319876c797c4e5960bdd5d0ae2321718 Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Tue, 16 Dec 2014 18:21:42 +0000 Subject: [PATCH] Try again to fix --order docs --- docs/command-line.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/command-line.md b/docs/command-line.md index bad0c9ee..7e412f38 100644 --- a/docs/command-line.md +++ b/docs/command-line.md @@ -181,13 +181,13 @@ This option lists all available tests in a non-indented form, one on each line. Test cases are ordered one of three ways: -* ```decl``` +### decl Declaration order. The order the tests were originally declared in. Note that ordering between files is not guaranteed and is implementation dependent. -* ```lex``` +### lex Lexicographically sorted. Tests are sorted, alpha-numerically, by name. -* ```rand``` +### rand Randomly sorted. Test names are sorted using ```std::random_shuffle()```. By default the random number generator is seeded with 0 - and so the order is repeatable. To control the random seed see rng-seed.