OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "base/test/multiprocess_test.h" | 5 #include "base/test/multiprocess_test.h" |
6 | 6 |
7 #include <unistd.h> | 7 #include <unistd.h> |
8 | 8 |
9 #include "base/containers/hash_tables.h" | 9 #include "base/containers/hash_tables.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
11 #include "testing/multiprocess_func_list.h" | 11 #include "testing/multiprocess_func_list.h" |
12 | 12 |
13 namespace base { | 13 namespace base { |
14 | 14 |
15 // A very basic implementation for Android. On Android tests can run in an APK | 15 // A very basic implementation for Android. On Android tests can run in an APK |
16 // and we don't have an executable to exec*. This implementation does the bare | 16 // and we don't have an executable to exec*. This implementation does the bare |
17 // minimum to execute the method specified by procname (in the child process). | 17 // minimum to execute the method specified by procname (in the child process). |
| 18 // - |base_command_line| is ignored. |
18 // - All options except |fds_to_remap| are ignored. | 19 // - All options except |fds_to_remap| are ignored. |
19 // - |debug_on_start| is ignored. | 20 // - |debug_on_start| is ignored. |
20 ProcessHandle MultiProcessTest::SpawnChildWithOptions( | 21 ProcessHandle SpawnMultiProcessTestChild(const std::string& procname, |
21 const std::string& procname, | 22 const CommandLine& base_command_line, |
22 const LaunchOptions& options, | 23 const LaunchOptions& options, |
23 bool debug_on_start) { | 24 bool debug_on_start) { |
24 // TODO(vtl): The FD-remapping done below is wrong in the presence of cycles | 25 // TODO(viettrungluu): The FD-remapping done below is wrong in the presence of |
25 // (e.g., fd1 -> fd2, fd2 -> fd1). crbug.com/326576 | 26 // cycles (e.g., fd1 -> fd2, fd2 -> fd1). crbug.com/326576 |
26 FileHandleMappingVector empty; | 27 FileHandleMappingVector empty; |
27 const FileHandleMappingVector* fds_to_remap = | 28 const FileHandleMappingVector* fds_to_remap = |
28 options.fds_to_remap ? options.fds_to_remap : ∅ | 29 options.fds_to_remap ? options.fds_to_remap : ∅ |
29 | 30 |
30 pid_t pid = fork(); | 31 pid_t pid = fork(); |
31 | 32 |
32 if (pid < 0) { | 33 if (pid < 0) { |
33 PLOG(ERROR) << "fork"; | 34 PLOG(ERROR) << "fork"; |
34 return kNullProcessHandle; | 35 return kNullProcessHandle; |
35 } | 36 } |
(...skipping 22 matching lines...) Expand all Loading... |
58 if (dup2(old_fd, new_fd) < 0) { | 59 if (dup2(old_fd, new_fd) < 0) { |
59 PLOG(FATAL) << "dup2"; | 60 PLOG(FATAL) << "dup2"; |
60 } | 61 } |
61 close(old_fd); | 62 close(old_fd); |
62 } | 63 } |
63 _exit(multi_process_function_list::InvokeChildProcessTest(procname)); | 64 _exit(multi_process_function_list::InvokeChildProcessTest(procname)); |
64 return 0; | 65 return 0; |
65 } | 66 } |
66 | 67 |
67 } // namespace base | 68 } // namespace base |
OLD | NEW |