summaryrefslogtreecommitdiffhomepage
path: root/test/syscalls/linux
diff options
context:
space:
mode:
authorMichael Pratt <mpratt@google.com>2019-01-23 18:23:39 -0800
committerShentubot <shentubot@google.com>2019-01-23 18:24:48 -0800
commit74f5100a92854bb244f560847cd8f459a8a06688 (patch)
tree99b73597c811ff2603593ef5c8e1a394be51997b /test/syscalls/linux
parentaf89fb49af1c9112753c718eb8538bcd9d2a6c6c (diff)
Fix cases of missing braces on if
PiperOrigin-RevId: 230641540 Change-Id: Icccc3cdeec191138940f0ecea0a29798359d2b1f
Diffstat (limited to 'test/syscalls/linux')
-rw-r--r--test/syscalls/linux/socket_inet_loopback.cc13
1 files changed, 9 insertions, 4 deletions
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());
+ }
}
}
}