OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_path.h" | 7 #include "base/file_path.h" |
8 #include "base/file_util.h" | 8 #include "base/file_util.h" |
9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
10 #include "base/process_util.h" | 10 #include "base/process_util.h" |
(...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
492 | 492 |
493 // http (localhost) tests | 493 // http (localhost) tests |
494 PAGE_CYCLER_HTTP_TESTS("moz", MozHttp); | 494 PAGE_CYCLER_HTTP_TESTS("moz", MozHttp); |
495 PAGE_CYCLER_HTTP_TESTS("intl1", Intl1Http); | 495 PAGE_CYCLER_HTTP_TESTS("intl1", Intl1Http); |
496 PAGE_CYCLER_HTTP_TESTS("intl2", Intl2Http); | 496 PAGE_CYCLER_HTTP_TESTS("intl2", Intl2Http); |
497 PAGE_CYCLER_HTTP_TESTS("dom", DomHttp); | 497 PAGE_CYCLER_HTTP_TESTS("dom", DomHttp); |
498 PAGE_CYCLER_HTTP_TESTS("bloat", BloatHttp); | 498 PAGE_CYCLER_HTTP_TESTS("bloat", BloatHttp); |
499 | 499 |
500 // HTML5 database tests | 500 // HTML5 database tests |
501 // These tests are _really_ slow on XP/Vista. | 501 // These tests are _really_ slow on XP/Vista. |
502 // crbug.com/53140: The Mac perf bot is not happy with this test suite either, | 502 // crbug.com/53140: Disable this test suite everywhere. |
503 // even though it doesn't seem to be a problem related to this test suite. | 503 #if 0 |
504 #if !defined(OS_WIN) && !defined(OS_MAC) | |
505 PAGE_CYCLER_DATABASE_TESTS("select-transactions", | 504 PAGE_CYCLER_DATABASE_TESTS("select-transactions", |
506 SelectTransactions); | 505 SelectTransactions); |
507 PAGE_CYCLER_DATABASE_TESTS("select-readtransactions", | 506 PAGE_CYCLER_DATABASE_TESTS("select-readtransactions", |
508 SelectReadTransactions); | 507 SelectReadTransactions); |
509 PAGE_CYCLER_DATABASE_TESTS("select-readtransactions-read-results", | 508 PAGE_CYCLER_DATABASE_TESTS("select-readtransactions-read-results", |
510 SelectReadTransactionsReadResults); | 509 SelectReadTransactionsReadResults); |
511 PAGE_CYCLER_DATABASE_TESTS("insert-transactions", | 510 PAGE_CYCLER_DATABASE_TESTS("insert-transactions", |
512 InsertTransactions); | 511 InsertTransactions); |
513 PAGE_CYCLER_DATABASE_TESTS("update-transactions", | 512 PAGE_CYCLER_DATABASE_TESTS("update-transactions", |
514 UpdateTransactions); | 513 UpdateTransactions); |
515 PAGE_CYCLER_DATABASE_TESTS("delete-transactions", | 514 PAGE_CYCLER_DATABASE_TESTS("delete-transactions", |
516 DeleteTransactions); | 515 DeleteTransactions); |
517 PAGE_CYCLER_DATABASE_TESTS("pseudo-random-transactions", | 516 PAGE_CYCLER_DATABASE_TESTS("pseudo-random-transactions", |
518 PseudoRandomTransactions); | 517 PseudoRandomTransactions); |
519 #endif | 518 #endif |
520 | 519 |
521 } // namespace | 520 } // namespace |
OLD | NEW |