summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorKevin Krakauer <krakauer@google.com>2019-07-17 11:47:59 -0700
committergVisor bot <gvisor-bot@google.com>2019-07-17 11:49:16 -0700
commit9f1189130ed8c9172700a76fd5796b7319fbb8b9 (patch)
tree480ed24fdbf599b201048826260a6611c7f87476 /test
parent682fd2d68f78c65beb11437087987c854fc67121 (diff)
Add AF_UNIX, SOCK_RAW sockets, which exist for some reason.
tcpdump creates these. PiperOrigin-RevId: 258611829
Diffstat (limited to 'test')
-rw-r--r--test/syscalls/linux/socket_unix_dgram_local.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/syscalls/linux/socket_unix_dgram_local.cc b/test/syscalls/linux/socket_unix_dgram_local.cc
index 8c5a473bd..9134fcdf7 100644
--- a/test/syscalls/linux/socket_unix_dgram_local.cc
+++ b/test/syscalls/linux/socket_unix_dgram_local.cc
@@ -28,15 +28,15 @@ std::vector<SocketPairKind> GetSocketPairs() {
return VecCat<SocketPairKind>(VecCat<SocketPairKind>(
ApplyVec<SocketPairKind>(
UnixDomainSocketPair,
- AllBitwiseCombinations(List<int>{SOCK_DGRAM},
+ AllBitwiseCombinations(List<int>{SOCK_DGRAM, SOCK_RAW},
List<int>{0, SOCK_NONBLOCK})),
ApplyVec<SocketPairKind>(
FilesystemBoundUnixDomainSocketPair,
- AllBitwiseCombinations(List<int>{SOCK_DGRAM},
+ AllBitwiseCombinations(List<int>{SOCK_DGRAM, SOCK_RAW},
List<int>{0, SOCK_NONBLOCK})),
ApplyVec<SocketPairKind>(
AbstractBoundUnixDomainSocketPair,
- AllBitwiseCombinations(List<int>{SOCK_DGRAM},
+ AllBitwiseCombinations(List<int>{SOCK_DGRAM, SOCK_RAW},
List<int>{0, SOCK_NONBLOCK}))));
}