summaryrefslogtreecommitdiffhomepage
path: root/test/syscalls/linux/packet_socket.cc
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2020-03-11 11:02:04 -0700
committergVisor bot <gvisor-bot@google.com>2020-03-11 11:02:04 -0700
commit2c2622b9428672de8032e1ff3c28283327ba158e (patch)
treea72c79b88f35773b9f2030b08128f72297be5946 /test/syscalls/linux/packet_socket.cc
parent2aa9514a06a5e34894e606d508ac2df53b082c74 (diff)
parent1e8c0bcedb265d3149e5d2ab1181628d013539c4 (diff)
Merge pull request #1975 from nybidari:iptables
PiperOrigin-RevId: 300362789
Diffstat (limited to 'test/syscalls/linux/packet_socket.cc')
-rw-r--r--test/syscalls/linux/packet_socket.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/syscalls/linux/packet_socket.cc b/test/syscalls/linux/packet_socket.cc
index 248762ca9..5ac68feb4 100644
--- a/test/syscalls/linux/packet_socket.cc
+++ b/test/syscalls/linux/packet_socket.cc
@@ -420,8 +420,9 @@ TEST_P(CookedPacketTest, BindDrop) {
// Bind with invalid address.
TEST_P(CookedPacketTest, BindFail) {
// Null address.
- ASSERT_THAT(bind(socket_, nullptr, sizeof(struct sockaddr)),
- SyscallFailsWithErrno(EFAULT));
+ ASSERT_THAT(
+ bind(socket_, nullptr, sizeof(struct sockaddr)),
+ AnyOf(SyscallFailsWithErrno(EFAULT), SyscallFailsWithErrno(EINVAL)));
// Address of size 1.
uint8_t addr = 0;