diff options
author | Ayush Ranjan <ayushranjan@google.com> | 2020-08-10 15:48:24 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-08-10 15:50:22 -0700 |
commit | a1af46c20ade5566ca8c2583f10c17765a5dc3ad (patch) | |
tree | 8e34886e5f6b8de8ef9ad35980a2b52636a60746 /test/runner/defs.bzl | |
parent | a88cf5a2e18869acb636f696700ecce2781be818 (diff) |
Enable VFS2 by default for all syscall tests.
Fixes #2923
PiperOrigin-RevId: 325904734
Diffstat (limited to 'test/runner/defs.bzl')
-rw-r--r-- | test/runner/defs.bzl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/runner/defs.bzl b/test/runner/defs.bzl index ba4732ca6..fa96b4ea2 100644 --- a/test/runner/defs.bzl +++ b/test/runner/defs.bzl @@ -132,7 +132,7 @@ def syscall_test( add_overlay = False, add_uds_tree = False, add_hostinet = False, - vfs2 = False, + vfs2 = True, fuse = False, tags = None): """syscall_test is a macro that will create targets for all platforms. |