From 74f5100a92854bb244f560847cd8f459a8a06688 Mon Sep 17 00:00:00 2001 From: Michael Pratt Date: Wed, 23 Jan 2019 18:23:39 -0800 Subject: Fix cases of missing braces on if PiperOrigin-RevId: 230641540 Change-Id: Icccc3cdeec191138940f0ecea0a29798359d2b1f --- test/syscalls/linux/socket_inet_loopback.cc | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'test/syscalls/linux/socket_inet_loopback.cc') diff --git a/test/syscalls/linux/socket_inet_loopback.cc b/test/syscalls/linux/socket_inet_loopback.cc index 0893be5a7..d83fb1543 100644 --- a/test/syscalls/linux/socket_inet_loopback.cc +++ b/test/syscalls/linux/socket_inet_loopback.cc @@ -261,7 +261,9 @@ TEST_P(SocketInetReusePortTest, TcpPortReuseMultiThread) { ASSERT_THAT(listen(fd, 40), SyscallSucceeds()); // On the first bind we need to determine which port was bound. - if (i != 0) continue; + if (i != 0) { + continue; + } // Get the port bound by the listening socket. socklen_t addrlen = listener.addr_len; @@ -363,7 +365,9 @@ TEST_P(SocketInetReusePortTest, UdpPortReuseMultiThread) { SyscallSucceeds()); // On the first bind we need to determine which port was bound. - if (i != 0) continue; + if (i != 0) { + continue; + } // Get the port bound by the listening socket. socklen_t addrlen = listener.addr_len; @@ -1087,10 +1091,11 @@ TEST_P(SocketMultiProtocolInetLoopbackTest, PortReuseTwoSockets) { // Verify that two sockets can be bound to the same port only if // SO_REUSEPORT is set for both of them. - if (!portreuse1 || !portreuse2) + if (!portreuse1 || !portreuse2) { ASSERT_THAT(ret, SyscallFailsWithErrno(EADDRINUSE)); - else + } else { ASSERT_THAT(ret, SyscallSucceeds()); + } } } } -- cgit v1.2.3