| Index: ipc/ipc_channel_posix_unittest.cc
|
| diff --git a/ipc/ipc_channel_posix_unittest.cc b/ipc/ipc_channel_posix_unittest.cc
|
| index 5157a01ac68a2693600465c68b69524cee087964..6f3962b403d92d6b2c4fcbe9ca78beaf621972e6 100644
|
| --- a/ipc/ipc_channel_posix_unittest.cc
|
| +++ b/ipc/ipc_channel_posix_unittest.cc
|
| @@ -285,8 +285,7 @@ TEST_F(IPCChannelPosixTest, AdvancedConnected) {
|
| ASSERT_TRUE(channel.AcceptsConnections());
|
| ASSERT_FALSE(channel.HasAcceptedConnection());
|
|
|
| - base::ProcessHandle handle = SpawnChild("IPCChannelPosixTestConnectionProc",
|
| - false);
|
| + base::ProcessHandle handle = SpawnChild("IPCChannelPosixTestConnectionProc");
|
| ASSERT_TRUE(handle);
|
| SpinRunLoop(TestTimeouts::action_max_timeout());
|
| ASSERT_EQ(IPCChannelPosixTestListener::CONNECTED, listener.status());
|
| @@ -315,8 +314,7 @@ TEST_F(IPCChannelPosixTest, ResetState) {
|
| ASSERT_TRUE(channel.AcceptsConnections());
|
| ASSERT_FALSE(channel.HasAcceptedConnection());
|
|
|
| - base::ProcessHandle handle = SpawnChild("IPCChannelPosixTestConnectionProc",
|
| - false);
|
| + base::ProcessHandle handle = SpawnChild("IPCChannelPosixTestConnectionProc");
|
| ASSERT_TRUE(handle);
|
| SpinRunLoop(TestTimeouts::action_max_timeout());
|
| ASSERT_EQ(IPCChannelPosixTestListener::CONNECTED, listener.status());
|
| @@ -324,8 +322,7 @@ TEST_F(IPCChannelPosixTest, ResetState) {
|
| channel.ResetToAcceptingConnectionState();
|
| ASSERT_FALSE(channel.HasAcceptedConnection());
|
|
|
| - base::ProcessHandle handle2 = SpawnChild("IPCChannelPosixTestConnectionProc",
|
| - false);
|
| + base::ProcessHandle handle2 = SpawnChild("IPCChannelPosixTestConnectionProc");
|
| ASSERT_TRUE(handle2);
|
| SpinRunLoop(TestTimeouts::action_max_timeout());
|
| ASSERT_EQ(IPCChannelPosixTestListener::CONNECTED, listener.status());
|
| @@ -374,14 +371,12 @@ TEST_F(IPCChannelPosixTest, MultiConnection) {
|
| ASSERT_TRUE(channel.AcceptsConnections());
|
| ASSERT_FALSE(channel.HasAcceptedConnection());
|
|
|
| - base::ProcessHandle handle = SpawnChild("IPCChannelPosixTestConnectionProc",
|
| - false);
|
| + base::ProcessHandle handle = SpawnChild("IPCChannelPosixTestConnectionProc");
|
| ASSERT_TRUE(handle);
|
| SpinRunLoop(TestTimeouts::action_max_timeout());
|
| ASSERT_EQ(IPCChannelPosixTestListener::CONNECTED, listener.status());
|
| ASSERT_TRUE(channel.HasAcceptedConnection());
|
| - base::ProcessHandle handle2 = SpawnChild("IPCChannelPosixFailConnectionProc",
|
| - false);
|
| + base::ProcessHandle handle2 = SpawnChild("IPCChannelPosixFailConnectionProc");
|
| ASSERT_TRUE(handle2);
|
| SpinRunLoop(TestTimeouts::action_max_timeout());
|
| int exit_code = 0;
|
|
|