diff options
author | Adin Scannell <ascannell@google.com> | 2020-11-23 14:15:43 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-11-23 14:18:20 -0800 |
commit | b6c00520d314811d59485a42c2fba578f34b91ee (patch) | |
tree | d21162f15082ac3f507ee74399b49e8e3b2b9e2c /test/syscalls/linux/BUILD | |
parent | 5d5af881103b784374f7e5231224cacbf19ec2d4 (diff) |
Omit sandbox from chown test.
This test fails because it must include additional UIDs. Omit
the bazel sandbox to ensure that it can function correctly.
PiperOrigin-RevId: 343927190
Diffstat (limited to 'test/syscalls/linux/BUILD')
-rw-r--r-- | test/syscalls/linux/BUILD | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/syscalls/linux/BUILD b/test/syscalls/linux/BUILD index 50baafbf7..946d06cd6 100644 --- a/test/syscalls/linux/BUILD +++ b/test/syscalls/linux/BUILD @@ -432,6 +432,9 @@ cc_binary( testonly = 1, srcs = ["chown.cc"], linkstatic = 1, + # We require additional UIDs for this test, so don't include the bazel + # sandbox as standard. + tags = ["no-sandbox"], deps = [ "//test/util:capability_util", "//test/util:file_descriptor", |