| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 <windows.h> | 5 #include <windows.h> |
| 6 #include <objbase.h> | 6 #include <objbase.h> |
| 7 #include <dbghelp.h> | 7 #include <dbghelp.h> |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
| (...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 427 EXPECT_FALSE(DumpHasStream(HandleOperationListStream)); | 427 EXPECT_FALSE(DumpHasStream(HandleOperationListStream)); |
| 428 EXPECT_FALSE(DumpHasStream(TokenStream)); | 428 EXPECT_FALSE(DumpHasStream(TokenStream)); |
| 429 } | 429 } |
| 430 | 430 |
| 431 } // namespace | 431 } // namespace |
| 432 | 432 |
| 433 int main(int argc, char** argv) { | 433 int main(int argc, char** argv) { |
| 434 testing::InitGoogleTest(&argc, argv); | 434 testing::InitGoogleTest(&argc, argv); |
| 435 CommandLine::Init(argc, argv); | 435 CommandLine::Init(argc, argv); |
| 436 | 436 |
| 437 logging::InitLogging(L"CON", | 437 logging::InitLogging( |
| 438 logging::LOG_TO_BOTH_FILE_AND_SYSTEM_DEBUG_LOG, | 438 L"CON", |
| 439 logging::DONT_LOCK_LOG_FILE, | 439 logging::LOG_TO_BOTH_FILE_AND_SYSTEM_DEBUG_LOG, |
| 440 logging::APPEND_TO_OLD_LOG_FILE); | 440 logging::DONT_LOCK_LOG_FILE, |
| 441 logging::APPEND_TO_OLD_LOG_FILE, |
| 442 logging::DISABLE_DCHECK_FOR_NON_OFFICIAL_RELEASE_BUILDS); |
| 441 return RUN_ALL_TESTS(); | 443 return RUN_ALL_TESTS(); |
| 442 } | 444 } |
| OLD | NEW |