From d7f2e4f12bc70b85a8f3aef36b648b4c616d1947 Mon Sep 17 00:00:00 2001 From: philsquared Date: Wed, 5 Sep 2012 00:09:09 -0700 Subject: [PATCH] Updated Command line (markdown) --- Command-line.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Command-line.md b/Command-line.md index 57a5d9b..d601b54 100644 --- a/Command-line.md +++ b/Command-line.md @@ -5,16 +5,16 @@ Note that options are described according to the following pattern: *<description>* - `-h, -?, --help`
- `-n, --nothrow`
- `-t, --test`
- `-r, --reporter`
- `-b, --break`
- `-s, --success`
- `-a, --abort`
- `-l, --list`
- `-o, --out`
- `-n, --name`
+ ` -h, -?, --help`
+ ` -n, --nothrow`
+ ` -t, --test`
+ ` -r, --reporter`
+ ` -b, --break`
+ ` -s, --success`
+ ` -a, --abort`
+ ` -l, --list`
+ ` -o, --out`
+ ` -n, --name`
## Usage @@ -53,7 +53,7 @@ Examples: -t "this test only" Matches the test case called, 'this test only' -t these/* Matches all cases starting with 'these/' -t exclude:notThis Matches all tests except, 'notThis' - -t ~:notThis Matches all tests except, 'notThis' + -t ~notThis Matches all tests except, 'notThis' -t ~*private* Matches all tests except those that contain 'private' -t a/* ~a/b/* a/b/c Matches all tests that start with 'a/', except those that start with 'a/b/', except 'a/b/c', which is included