From e6aa1f4e4ec1a5429789e0a9a85d168d4acbf2b8 Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Wed, 11 Jan 2017 17:14:28 +0000 Subject: [PATCH] Added note on escaping names on command line to docs --- docs/command-line.md | 2 ++ docs/release-notes.md | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/command-line.md b/docs/command-line.md index 1c5ded28..c39122d6 100644 --- a/docs/command-line.md +++ b/docs/command-line.md @@ -66,6 +66,8 @@ A series of tags form an AND expression wheras a comma-separated sequence forms
[one][two],[three]
This matches all tests tagged `[one]` and `[two]`, as well as all tests tagged `[three]` +Test names containing special characters, such as `,` or `[` can specify them on the command line using `\`. +`\` also escapes itself. ## Choosing a reporter to use diff --git a/docs/release-notes.md b/docs/release-notes.md index 53d3fabc..56a57eb2 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -12,7 +12,7 @@ * Blue shell colour * Missing argument to `CATCH_CHECK_THROWS` * Don't encode extended ASCII in XML -* use std::shuffle on more compilers (fixes deprecation warning/error) +* use `std::shuffle` on more compilers (fixes deprecation warning/error) * Use `__COUNTER__` more consistently (where available) ### Other: