| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "net/test/test_server.h" | 5 #include "net/test/test_server.h" |
| 6 | 6 |
| 7 #include <poll.h> | 7 #include <poll.h> |
| 8 | 8 |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 OrphanedTestServerFilter filter(testserver_path.value(), | 118 OrphanedTestServerFilter filter(testserver_path.value(), |
| 119 base::IntToString(host_port_pair_.port())); | 119 base::IntToString(host_port_pair_.port())); |
| 120 if (!base::KillProcesses("python", -1, &filter)) { | 120 if (!base::KillProcesses("python", -1, &filter)) { |
| 121 LOG(WARNING) << "Failed to clean up older orphaned testserver instances."; | 121 LOG(WARNING) << "Failed to clean up older orphaned testserver instances."; |
| 122 } | 122 } |
| 123 | 123 |
| 124 // Launch a new testserver process. | 124 // Launch a new testserver process. |
| 125 base::LaunchOptions options; | 125 base::LaunchOptions options; |
| 126 options.fds_to_remap = &map_write_fd; | 126 options.fds_to_remap = &map_write_fd; |
| 127 if (!base::LaunchProcess(python_command, options, &process_handle_)) { | 127 if (!base::LaunchProcess(python_command, options, &process_handle_)) { |
| 128 LOG(ERROR) << "Failed to launch " << python_command.command_line_string(); | 128 LOG(ERROR) << "Failed to launch " << python_command.GetCommandLineString(); |
| 129 return false; | 129 return false; |
| 130 } | 130 } |
| 131 | 131 |
| 132 return true; | 132 return true; |
| 133 } | 133 } |
| 134 | 134 |
| 135 bool TestServer::WaitToStart() { | 135 bool TestServer::WaitToStart() { |
| 136 file_util::ScopedFD child_fd_closer(child_fd_closer_.release()); | 136 file_util::ScopedFD child_fd_closer(child_fd_closer_.release()); |
| 137 | 137 |
| 138 base::TimeDelta remaining_time = base::TimeDelta::FromMilliseconds( | 138 base::TimeDelta remaining_time = base::TimeDelta::FromMilliseconds( |
| (...skipping 17 matching lines...) Expand all Loading... |
| 156 | 156 |
| 157 if (!ParseServerData(server_data)) { | 157 if (!ParseServerData(server_data)) { |
| 158 LOG(ERROR) << "Could not parse server_data: " << server_data; | 158 LOG(ERROR) << "Could not parse server_data: " << server_data; |
| 159 return false; | 159 return false; |
| 160 } | 160 } |
| 161 | 161 |
| 162 return true; | 162 return true; |
| 163 } | 163 } |
| 164 | 164 |
| 165 } // namespace net | 165 } // namespace net |
| OLD | NEW |