| 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/hash_tables.h" | 9 #include "base/containers/hash_tables.h" |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| 11 #include "base/posix/eintr_wrapper.h" | 11 #include "base/posix/eintr_wrapper.h" |
| 12 #include "base/process.h" | 12 #include "base/process.h" |
| 13 #include "testing/multiprocess_func_list.h" | 13 #include "testing/multiprocess_func_list.h" |
| 14 | 14 |
| 15 namespace base { | 15 namespace base { |
| 16 | 16 |
| 17 // A very basic implementation for android. On Android tests can run in an APK | 17 // A very basic implementation for android. On Android tests can run in an APK |
| 18 // and we don't have an executable to exec*. This implementation does the bare | 18 // and we don't have an executable to exec*. This implementation does the bare |
| 19 // minimum to execute the method specified by procname (in the child process). | 19 // minimum to execute the method specified by procname (in the child process). |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 if (dup2(old_fd, new_fd) < 0) { | 53 if (dup2(old_fd, new_fd) < 0) { |
| 54 PLOG(FATAL) << "dup2"; | 54 PLOG(FATAL) << "dup2"; |
| 55 } | 55 } |
| 56 HANDLE_EINTR(close(old_fd)); | 56 HANDLE_EINTR(close(old_fd)); |
| 57 } | 57 } |
| 58 _exit(multi_process_function_list::InvokeChildProcessTest(procname)); | 58 _exit(multi_process_function_list::InvokeChildProcessTest(procname)); |
| 59 return 0; | 59 return 0; |
| 60 } | 60 } |
| 61 | 61 |
| 62 } // namespace base | 62 } // namespace base |
| OLD | NEW |