diff options
author | Ghanan Gowripalan <ghanan@google.com> | 2021-08-09 10:16:59 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-08-09 10:20:21 -0700 |
commit | 34ec00c5e775479b15ae8ad69456cef02f0a545a (patch) | |
tree | d66037f5bfbce4f21e0785ff345596ba85b65be0 /test/syscalls/linux/BUILD | |
parent | c07dc3828a0330a3804514094d45e6362ae2de30 (diff) |
Run raw IP socket syscall tests on Fuchsia
+ Do not check for CAP_NET_RAW on Fuchsia
Fuchsia does not support capabilities the same way Linux does. Instead
emulate the check for CAP_NET_RAW by checking if a raw IP sockets may
be created.
PiperOrigin-RevId: 389663218
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 71cc9b51d..960421466 100644 --- a/test/syscalls/linux/BUILD +++ b/test/syscalls/linux/BUILD @@ -7,6 +7,9 @@ package( exports_files( [ + "raw_socket.cc", + "raw_socket_hdrincl.cc", + "raw_socket_icmp.cc", "socket.cc", "socket_inet_loopback.cc", "socket_inet_loopback_isolated.cc", |