From 8fb1219013fece468e2821d1a0fbb9028482bb3b Mon Sep 17 00:00:00 2001 From: Martin Hostettler Date: Mon, 21 Oct 2019 23:37:12 +0200 Subject: [PATCH] docs: command-line: Add example to specify tests by file name. --- docs/command-line.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/command-line.md b/docs/command-line.md index d204da0e..742d84b6 100644 --- a/docs/command-line.md +++ b/docs/command-line.md @@ -99,6 +99,7 @@ exclude:notThis Matches all tests except, 'notThis' ~*private* Matches all tests except those that contain 'private' a* ~ab* abc Matches all tests that start with 'a', except those that start with 'ab', except 'abc', which is included +-# [#somefile] Matches all tests from the file 'somefile.cpp' Names within square brackets are interpreted as tags.