diff options
author | Michael Pratt <mpratt@google.com> | 2018-12-10 23:58:20 -0800 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2018-12-10 23:59:18 -0800 |
commit | 77a443269a81bc81d1d0b4ac46406745e882be88 (patch) | |
tree | 1fed35d61819e17ebb0039c8a21bc1480818966f /test/syscalls/README.md | |
parent | 93ac04a6c32003597b3c639480126f8048988b72 (diff) |
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
Diffstat (limited to 'test/syscalls/README.md')
-rw-r--r-- | test/syscalls/README.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/syscalls/README.md b/test/syscalls/README.md index 69712663c..3c5c2afff 100644 --- a/test/syscalls/README.md +++ b/test/syscalls/README.md @@ -39,13 +39,13 @@ tag: ```bash # Run all tests in native environment: -$ bazel test --test_tag_filter=native //test/syscalls:* +$ bazel test --test_tag_filters=native //test/syscalls/... # Run all tests in runsc with ptrace: -$ bazel test --test_tag_filter=runsc_ptrace //test/syscalls:* +$ bazel test --test_tag_filters=runsc_ptrace //test/syscalls/... # Run all tests in runsc with kvm: -$ bazel test --test_tag_filter=runsc_kvm //test/syscalls:* +$ bazel test --test_tag_filters=runsc_kvm //test/syscalls/... ``` You can also run all the tests on every platform. (Warning, this may take a @@ -53,7 +53,7 @@ while to run.) ```bash # Run all tests on every platform: -$ bazel test //test/syscalls:* +$ bazel test //test/syscalls/... ``` ## Writing new tests |