Updated Command line (markdown)

philsquared
2011-04-12 01:10:37 -07:00
parent bacb83e061
commit f28a6f1164

@@ -89,3 +89,16 @@ Recognised stream names are:
* %stdout * %stdout
* %stderr * %stderr
* %debug (The IDE's debug output window - currently only Windows' OutputDebugString is supported). * %debug (The IDE's debug output window - currently only Windows' OutputDebugString is supported).
## Naming a test run
<pre>
-n, --name &lt;name for test run>
</pre>
If a name is supplied it will be used by the reporter to provide an overall name for the test run. This can be useful if you are sending to a file, for example, and need to distinguish different test runs - either from different Catch executables or runs of the same executable with different options.
Examples:
<pre>
-n testRun
-n "tests of the widget component"
</pre>