Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(155)

Side by Side Diff: chrome/test/memory_test/memory_test.cc

Issue 118009: Disable memory tests that are failing after recent webkit merges. (Closed)
Patch Set: Created 11 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698