Skip to content

Commit 91da576

Browse files
author
Arnd R. Strube
committed
Order commandline switches alphabetically
1 parent 8aa20a3 commit 91da576

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

manual.markdown

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -222,22 +222,22 @@ The test execution of this will *likely* (no guarantee of order in CppUTest) be:
222222

223223
## Command line Switches
224224

225-
* *-v* verbose, print each test name as it runs
226225
* *-c* colorize output, print green if OK, or red if failed
227-
* *-r#* repeat the tests some number (#) of times, or twice if # is not specified. This is handy if you are experiencing memory leaks. A second run that has no leaks indicates that someone is allocating statics and not releasing them.
228226
* *-g group* only run test whose group contains the substring *group*
229-
* *-sg group* only run test whose group exactly matches the string *group*
230-
* *-xg group* exclude tests whose group contains the substring *group*
231-
* *-n name* only run test whose name contains the substring *name*
232-
* *-sn name* only run test whose name exactly matches the string *name*
233-
* *-xn name* exclude tests whose name contains the substring *name*
234-
* *"TEST(group, name)"* only run test whose group and name matches the strings group and name. This can be used to copy-paste output from the -v option on the command line.
235-
* *-ojunit* output to JUnit ant plugin style xml files (for CI systems)
236-
* *-oteamcity* output to xml files (as the name suggests, for TeamCity)
237227
* *-k* package name, Add a package name in JUnit output (for classification in CI systems)
238228
* *-lg* print a list of group names, separated by spaces
239229
* *-ln* print a list of test names in the form of *group.name*, separated by spaces
230+
* *-n name* only run test whose name contains the substring *name*
231+
* *-ojunit* output to JUnit ant plugin style xml files (for CI systems)
232+
* *-oteamcity* output to xml files (as the name suggests, for TeamCity)
240233
* *-p* run tests in a separate process.
234+
* *-r#* repeat the tests some number (#) of times, or twice if # is not specified. This is handy if you are experiencing memory leaks. A second run that has no leaks indicates that someone is allocating statics and not releasing them.
235+
* *-sg group* only run test whose group exactly matches the string *group*
236+
* *-sn name* only run test whose name exactly matches the string *name*
237+
* *-v* verbose, print each test name as it runs
238+
* *-xg group* exclude tests whose group contains the substring *group*
239+
* *-xn name* exclude tests whose name contains the substring *name*
240+
* *"TEST(group, name)"* only run test whose group and name matches the strings group and name. This can be used to copy-paste output from the -v option on the command line.
241241

242242
You can specify multiple -s|sg, -s|sn and "TEST(group, name)" parameters:
243243

0 commit comments

Comments
 (0)