diff options
Diffstat (limited to 'test/syscalls/linux')
-rw-r--r-- | test/syscalls/linux/socket_unix_blocking_local.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/syscalls/linux/socket_unix_blocking_local.cc b/test/syscalls/linux/socket_unix_blocking_local.cc index f79e04b33..3c2105cc7 100644 --- a/test/syscalls/linux/socket_unix_blocking_local.cc +++ b/test/syscalls/linux/socket_unix_blocking_local.cc @@ -33,14 +33,12 @@ std::vector<SocketPairKind> GetSocketPairs() { ApplyVec<SocketPairKind>( FilesystemBoundUnixDomainSocketPair, AllBitwiseCombinations( - // FIXME: Add SOCK_DGRAM once blocking is fixed. - List<int>{SOCK_STREAM, SOCK_SEQPACKET}, + List<int>{SOCK_STREAM, SOCK_SEQPACKET, SOCK_DGRAM}, List<int>{0, SOCK_CLOEXEC})), ApplyVec<SocketPairKind>( AbstractBoundUnixDomainSocketPair, AllBitwiseCombinations( - // FIXME: Add SOCK_DGRAM once blocking is fixed. - List<int>{SOCK_STREAM, SOCK_SEQPACKET}, + List<int>{SOCK_STREAM, SOCK_SEQPACKET, SOCK_DGRAM}, List<int>{0, SOCK_CLOEXEC}))); } |