| Index: base/process/process_util_unittest.cc
|
| diff --git a/base/process/process_util_unittest.cc b/base/process/process_util_unittest.cc
|
| index 44be9f4a2735a10d7d834f31addad2fc802f959d..3e723a3b6eb73c9a023dc51522e60501a4e192ab 100644
|
| --- a/base/process/process_util_unittest.cc
|
| +++ b/base/process/process_util_unittest.cc
|
| @@ -54,12 +54,6 @@ using base::FilePath;
|
|
|
| namespace {
|
|
|
| -#if defined(OS_WIN)
|
| -const wchar_t kProcessName[] = L"base_unittests.exe";
|
| -#else
|
| -const wchar_t kProcessName[] = L"base_unittests";
|
| -#endif // defined(OS_WIN)
|
| -
|
| #if defined(OS_ANDROID)
|
| const char kShellPath[] = "/system/bin/sh";
|
| const char kPosixShell[] = "sh";
|
| @@ -69,7 +63,6 @@ const char kPosixShell[] = "bash";
|
| #endif
|
|
|
| const char kSignalFileSlow[] = "SlowChildProcess.die";
|
| -const char kSignalFileCrash[] = "CrashingChildProcess.die";
|
| const char kSignalFileKill[] = "KilledChildProcess.die";
|
|
|
| #if defined(OS_WIN)
|
| @@ -221,6 +214,7 @@ TEST_F(ProcessUtilTest, GetProcId) {
|
| // TODO(gspencer): turn this test process into a very small program
|
| // with no symbols (instead of using the multiprocess testing
|
| // framework) to reduce the ReportCrash overhead.
|
| +const char kSignalFileCrash[] = "CrashingChildProcess.die";
|
|
|
| MULTIPROCESS_TEST_MAIN(CrashingChildProcess) {
|
| WaitToDie(ProcessUtilTest::GetSignalFilePath(kSignalFileCrash).c_str());
|
|
|