Skip to content

Commit 95f5b93

Browse files
committed
fixup! doc: document wildcard supported by tools/test.py
1 parent 51b10ea commit 95f5b93

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

BUILDING.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,6 +358,7 @@ with `test-stream-`:
358358

359359
```bash
360360
tools/test.py test/parallel/test-stream-*
361+
tools/test.py parallel/test-stream-* # The test/ prefix can be omitted
361362
# In some shell environments, you may need to quote the pattern
362363
tools/test.py "test/parallel/test-stream-*"
363364
```
@@ -368,7 +369,8 @@ with a name that starts with `test-inspector-`, regardless of the directory they
368369
```bash
369370
# Matches test/sequential/test-inspector-*, test/parallel/test-inspector-*,
370371
# test/known_issues/test-inspector-*, etc.
371-
tools/test.py test/*/test-inspector-*
372+
tools/test.py "test/*/test-inspector-*"
373+
tools/test.py "*/test-inspector-*" # The test/ prefix can be omitted
372374
```
373375

374376
If you want to check the other options, please refer to the help by using

0 commit comments

Comments
 (0)