Index: base/posix/unix_domain_socket_linux_unittest.cc |
diff --git a/base/posix/unix_domain_socket_linux_unittest.cc b/base/posix/unix_domain_socket_linux_unittest.cc |
index 1343555b330919d62a10f5de604cc72749dd1289..22bb172ad5b1b912460b613382018db9be22af68 100644 |
--- a/base/posix/unix_domain_socket_linux_unittest.cc |
+++ b/base/posix/unix_domain_socket_linux_unittest.cc |
@@ -45,7 +45,7 @@ TEST(UnixDomainSocketTest, SendRecvMsgAbortOnReplyFDClose) { |
ASSERT_EQ(1U, message_fds.size()); |
// Close the reply FD. |
- ASSERT_EQ(0, HANDLE_EINTR(close(message_fds.front()))); |
+ ASSERT_EQ(0, IGNORE_EINTR(close(message_fds.front()))); |
// Check that the thread didn't get blocked. |
WaitableEvent event(false, false); |
@@ -63,7 +63,7 @@ TEST(UnixDomainSocketTest, SendRecvMsgAvoidsSIGPIPE) { |
int fds[2]; |
ASSERT_EQ(0, socketpair(AF_UNIX, SOCK_SEQPACKET, 0, fds)); |
file_util::ScopedFD scoped_fd1(&fds[1]); |
- ASSERT_EQ(0, HANDLE_EINTR(close(fds[0]))); |
+ ASSERT_EQ(0, IGNORE_EINTR(close(fds[0]))); |
// Have the thread send a synchronous message via the socket. Unless the |
// message is sent with MSG_NOSIGNAL, this shall result in SIGPIPE. |