OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef IPC_IPC_MULTIPROCESS_TEST_H_ |
| 6 #define IPC_IPC_MULTIPROCESS_TEST_H_ |
| 7 #pragma once |
| 8 |
| 9 #include "base/test/multiprocess_test.h" |
| 10 |
| 11 // Use this macro when your sub-process is using an IPCChannel to communicate |
| 12 // with the test process. |
| 13 // See comment below for MultiProcessTestIPCSetUp() on why this is needed. |
| 14 #define MULTIPROCESS_IPC_TEST_MAIN(test_main) \ |
| 15 MULTIPROCESS_TEST_MAIN_WITH_SETUP(test_main, MultiProcessTestIPCSetUp) |
| 16 |
| 17 // Setup function used by MULTIPROCESS_IPC_TEST_MAIN. |
| 18 // Registers the IPC channel as a global descriptor in the child process. This |
| 19 // is needed on POSIX as the IPCChannel when created looks for a specific global |
| 20 // descriptor to establish the connection to the parent process. |
| 21 void MultiProcessTestIPCSetUp(); |
| 22 |
| 23 #endif // IPC_IPC_MULTIPROCESS_TEST_H_ |
OLD | NEW |