| Index: third_party/crashpad/crashpad/snapshot/win/crashpad_snapshot_test_extra_memory_ranges.cc
|
| diff --git a/third_party/crashpad/crashpad/snapshot/win/crashpad_snapshot_test_extra_memory_ranges.cc b/third_party/crashpad/crashpad/snapshot/win/crashpad_snapshot_test_extra_memory_ranges.cc
|
| index 58b145e564a00ebda5d95a4cc948d1a52d1b6b4f..ba04907a5a2e34975c8a3bc2f8cb91fc74becbf3 100644
|
| --- a/third_party/crashpad/crashpad/snapshot/win/crashpad_snapshot_test_extra_memory_ranges.cc
|
| +++ b/third_party/crashpad/crashpad/snapshot/win/crashpad_snapshot_test_extra_memory_ranges.cc
|
| @@ -37,12 +37,14 @@ int wmain(int argc, wchar_t* argv[]) {
|
|
|
| // Tell the parent that the environment has been set up.
|
| HANDLE out = GetStdHandle(STD_OUTPUT_HANDLE);
|
| - PCHECK(out != INVALID_HANDLE_VALUE) << "GetStdHandle";
|
| + // GetStdHandle
|
| + CHECK(out != INVALID_HANDLE_VALUE);
|
| char c = ' ';
|
| CheckedWriteFile(out, &c, sizeof(c));
|
|
|
| HANDLE in = GetStdHandle(STD_INPUT_HANDLE);
|
| - PCHECK(in != INVALID_HANDLE_VALUE) << "GetStdHandle";
|
| + // GetStdHandle
|
| + CHECK(in != INVALID_HANDLE_VALUE);
|
| CheckedReadFile(in, &c, sizeof(c));
|
| CHECK(c == 'd' || c == ' ');
|
|
|
|
|