Skip to content

Commit 77a4432

Browse files
prattmicshentubot
authored andcommitted
Fix test tag argument typo
The argument is --test_tag_filters, not --test_tag_filter. Also switch to ... instead of :*, as it doesn't require special shell quoting to avoid * expansion. PiperOrigin-RevId: 224949618 Change-Id: I45dd6acbaeae29f2cc0baa977b086b5c037c6a88
1 parent 93ac04a commit 77a4432

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/syscalls/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,21 +39,21 @@ tag:
3939

4040
```bash
4141
# Run all tests in native environment:
42-
$ bazel test --test_tag_filter=native //test/syscalls:*
42+
$ bazel test --test_tag_filters=native //test/syscalls/...
4343

4444
# Run all tests in runsc with ptrace:
45-
$ bazel test --test_tag_filter=runsc_ptrace //test/syscalls:*
45+
$ bazel test --test_tag_filters=runsc_ptrace //test/syscalls/...
4646

4747
# Run all tests in runsc with kvm:
48-
$ bazel test --test_tag_filter=runsc_kvm //test/syscalls:*
48+
$ bazel test --test_tag_filters=runsc_kvm //test/syscalls/...
4949
```
5050

5151
You can also run all the tests on every platform. (Warning, this may take a
5252
while to run.)
5353

5454
```bash
5555
# Run all tests on every platform:
56-
$ bazel test //test/syscalls:*
56+
$ bazel test //test/syscalls/...
5757
```
5858

5959
## Writing new tests

0 commit comments

Comments
 (0)