diff options
-rw-r--r-- | base/test/test_suite.cc | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/base/test/test_suite.cc b/base/test/test_suite.cc index 87ee904..83a2549 100644 --- a/base/test/test_suite.cc +++ b/base/test/test_suite.cc @@ -232,12 +232,6 @@ void TestSuite::SuppressErrorDialogs() { // http://blogs.msdn.com/oldnewthing/archive/2004/07/27/198410.aspx UINT existing_flags = SetErrorMode(new_flags); SetErrorMode(existing_flags | new_flags); - - // Suppress the "Debug Assertion Failed" dialog. - // TODO(hbono): remove this code when gtest has it. - // http://groups.google.com/d/topic/googletestframework/OjuwNlXy5ac/discussion - _CrtSetReportMode(_CRT_ASSERT, _CRTDBG_MODE_FILE | _CRTDBG_MODE_DEBUG); - _CrtSetReportFile(_CRT_ASSERT, _CRTDBG_FILE_STDERR); #endif // defined(OS_WIN) } |