| OLD | NEW |
| 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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 "base/basictypes.h" | 5 #include "base/basictypes.h" |
| 6 #include "base/command_line.h" | 6 #include "base/command_line.h" |
| 7 #include "base/file_util.h" | 7 #include "base/file_util.h" |
| 8 #include "base/path_service.h" | 8 #include "base/path_service.h" |
| 9 #include "base/process_util.h" | 9 #include "base/process_util.h" |
| 10 #include "base/string_util.h" | 10 #include "base/string_util.h" |
| (...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 413 } | 413 } |
| 414 | 414 |
| 415 void RunTest(const char* test_name, int num_target_tabs) { | 415 void RunTest(const char* test_name, int num_target_tabs) { |
| 416 std::wstring pages, timings; | 416 std::wstring pages, timings; |
| 417 MemoryTest::RunTest(test_name, num_target_tabs); | 417 MemoryTest::RunTest(test_name, num_target_tabs); |
| 418 } | 418 } |
| 419 }; | 419 }; |
| 420 | 420 |
| 421 } // namespace | 421 } // namespace |
| 422 | 422 |
| 423 TEST_F(MemoryTest, SingleTabTest) { | 423 TEST_F(MemoryTest, DISABLED_SingleTabTest) { |
| 424 RunTest("1t", 1); | 424 RunTest("1t", 1); |
| 425 } | 425 } |
| 426 | 426 |
| 427 TEST_F(MemoryTest, FiveTabTest) { | 427 TEST_F(MemoryTest, DISABLED_FiveTabTest) { |
| 428 RunTest("5t", 5); | 428 RunTest("5t", 5); |
| 429 } | 429 } |
| 430 | 430 |
| 431 TEST_F(MemoryTest, TwelveTabTest) { | 431 TEST_F(MemoryTest, TwelveTabTest) { |
| 432 RunTest("12t", 12); | 432 RunTest("12t", 12); |
| 433 } | 433 } |
| OLD | NEW |