diff options
author | Fabricio Voznika <fvoznika@google.com> | 2019-06-06 15:54:54 -0700 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2019-06-06 15:56:20 -0700 |
commit | 93aa7d11673392ca51ba69122ff5fe1aad7331b9 (patch) | |
tree | 56baaeb62b847e2b40bdbfd1f18c2882ab118d55 /test | |
parent | 2d2831e3541c8ae3c84f17cfd1bf0a26f2027044 (diff) |
Remove tmpfs restriction from test
runsc supports UDS over gofer mounts and tmpfs is
not needed for this test.
PiperOrigin-RevId: 251944870
Diffstat (limited to 'test')
-rw-r--r-- | test/syscalls/BUILD | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/test/syscalls/BUILD b/test/syscalls/BUILD index 2985275bb..731e2aa85 100644 --- a/test/syscalls/BUILD +++ b/test/syscalls/BUILD @@ -669,12 +669,7 @@ syscall_test( test = "//test/syscalls/linux:write_test", ) -syscall_test( - test = "//test/syscalls/linux:proc_net_unix_test", - # Unix domain socket creation isn't supported on all file systems. The - # sentry-internal tmpfs is known to support it. - use_tmpfs = True, -) +syscall_test(test = "//test/syscalls/linux:proc_net_unix_test") go_binary( name = "syscall_test_runner", |