From 13c0cca50e061c9b9a3ae8e13e8baa0f29909370 Mon Sep 17 00:00:00 2001 From: Dean Deng Date: Wed, 22 Jul 2020 15:10:17 -0700 Subject: Skip RawHDRINCL tests that are blocking presubmits/releases. Temporarily skip these, on bhaskherh@'s advice. PiperOrigin-RevId: 322664955 --- test/syscalls/linux/raw_socket_hdrincl.cc | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'test') diff --git a/test/syscalls/linux/raw_socket_hdrincl.cc b/test/syscalls/linux/raw_socket_hdrincl.cc index 5bb14d57c..97f0467aa 100644 --- a/test/syscalls/linux/raw_socket_hdrincl.cc +++ b/test/syscalls/linux/raw_socket_hdrincl.cc @@ -178,6 +178,9 @@ TEST_F(RawHDRINCL, ConnectToLoopback) { } TEST_F(RawHDRINCL, SendWithoutConnectSucceeds) { + // FIXME(github.dev/issue/3159): Test currently flaky. + SKIP_IF(true); + struct iphdr hdr = LoopbackHeader(); ASSERT_THAT(send(socket_, &hdr, sizeof(hdr), 0), SyscallSucceedsWithValue(sizeof(hdr))); @@ -281,6 +284,9 @@ TEST_F(RawHDRINCL, SendAndReceive) { // Send and receive a packet where the sendto address is not the same as the // provided destination. TEST_F(RawHDRINCL, SendAndReceiveDifferentAddress) { + // FIXME(github.dev/issue/3160): Test currently flaky. + SKIP_IF(true); + int port = 40000; if (!IsRunningOnGvisor()) { port = static_cast(ASSERT_NO_ERRNO_AND_VALUE( -- cgit v1.2.3