diff options
author | Ghanan Gowripalan <ghanan@google.com> | 2021-09-23 11:42:24 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-09-23 11:47:15 -0700 |
commit | 2e4f26ac5ed206e981f662326e19d60b5f05bd4c (patch) | |
tree | a4da2601d6a53cc0f75f01ddb445277d03014212 /test | |
parent | d480289adb9bd3421dd6275ff480f5e5743e326b (diff) |
Compose ICMP endpoint with datagram-based endpoint
An ICMP endpoint's write path can use the datagram-based endpoint.
Updates #6565.
Test: Datagram-based generic socket + ICMP/ping syscall tests.
PiperOrigin-RevId: 398539844
Diffstat (limited to 'test')
-rw-r--r-- | test/syscalls/linux/socket_ipv4_datagram_based_socket_unbound_loopback.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/syscalls/linux/socket_ipv4_datagram_based_socket_unbound_loopback.cc b/test/syscalls/linux/socket_ipv4_datagram_based_socket_unbound_loopback.cc index 9ae68e015..4ab4ef261 100644 --- a/test/syscalls/linux/socket_ipv4_datagram_based_socket_unbound_loopback.cc +++ b/test/syscalls/linux/socket_ipv4_datagram_based_socket_unbound_loopback.cc @@ -18,11 +18,11 @@ namespace gvisor { namespace testing { -INSTANTIATE_TEST_SUITE_P(IPv4Sockets, IPv4DatagramBasedUnboundSocketTest, - ::testing::ValuesIn(ApplyVecToVec<SocketKind>( - {IPv4UDPUnboundSocket, IPv4RawUDPUnboundSocket}, - AllBitwiseCombinations(List<int>{ - 0, SOCK_NONBLOCK})))); +INSTANTIATE_TEST_SUITE_P( + IPv4Sockets, IPv4DatagramBasedUnboundSocketTest, + ::testing::ValuesIn(ApplyVecToVec<SocketKind>( + {IPv4UDPUnboundSocket, IPv4RawUDPUnboundSocket, ICMPUnboundSocket}, + AllBitwiseCombinations(List<int>{0, SOCK_NONBLOCK})))); } // namespace testing } // namespace gvisor |