diff options
author | Fabricio Voznika <fvoznika@google.com> | 2021-04-28 14:41:59 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-04-28 14:44:06 -0700 |
commit | 704728d38fdb3ceaf8dfbfdba84eee183775b90c (patch) | |
tree | fc5f142e89a29ad6ab0b1ce93b2277a52346fcd3 /test/syscalls | |
parent | f54d87b9eceee7f6069a4faf2628f19b8752ad06 (diff) |
Disable test that is always skipped
PiperOrigin-RevId: 370989166
Diffstat (limited to 'test/syscalls')
-rw-r--r-- | test/syscalls/linux/raw_socket_hdrincl.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/syscalls/linux/raw_socket_hdrincl.cc b/test/syscalls/linux/raw_socket_hdrincl.cc index 2f25aceb2..8b3d02d97 100644 --- a/test/syscalls/linux/raw_socket_hdrincl.cc +++ b/test/syscalls/linux/raw_socket_hdrincl.cc @@ -177,10 +177,8 @@ TEST_F(RawHDRINCL, ConnectToLoopback) { SyscallSucceeds()); } -TEST_F(RawHDRINCL, SendWithoutConnectSucceeds) { - // FIXME(gvisor.dev/issue/3159): Test currently flaky. - SKIP_IF(true); - +// FIXME(gvisor.dev/issue/3159): Test currently flaky. +TEST_F(RawHDRINCL, DISABLED_SendWithoutConnectSucceeds) { struct iphdr hdr = LoopbackHeader(); ASSERT_THAT(send(socket_, &hdr, sizeof(hdr), 0), SyscallSucceedsWithValue(sizeof(hdr))); |