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 #if !defined(OS_WIN) | 502 // crbug.com/53140: The Mac perf bot is not happy with this test suite either, |
| 503 // even though it doesn't seem to be a problem related to this test suite. |
| 504 #if !defined(OS_WIN) && !defined(OS_MAC) |
503 PAGE_CYCLER_DATABASE_TESTS("select-transactions", | 505 PAGE_CYCLER_DATABASE_TESTS("select-transactions", |
504 SelectTransactions); | 506 SelectTransactions); |
505 PAGE_CYCLER_DATABASE_TESTS("select-readtransactions", | 507 PAGE_CYCLER_DATABASE_TESTS("select-readtransactions", |
506 SelectReadTransactions); | 508 SelectReadTransactions); |
507 PAGE_CYCLER_DATABASE_TESTS("select-readtransactions-read-results", | 509 PAGE_CYCLER_DATABASE_TESTS("select-readtransactions-read-results", |
508 SelectReadTransactionsReadResults); | 510 SelectReadTransactionsReadResults); |
509 PAGE_CYCLER_DATABASE_TESTS("insert-transactions", | 511 PAGE_CYCLER_DATABASE_TESTS("insert-transactions", |
510 InsertTransactions); | 512 InsertTransactions); |
511 PAGE_CYCLER_DATABASE_TESTS("update-transactions", | 513 PAGE_CYCLER_DATABASE_TESTS("update-transactions", |
512 UpdateTransactions); | 514 UpdateTransactions); |
513 PAGE_CYCLER_DATABASE_TESTS("delete-transactions", | 515 PAGE_CYCLER_DATABASE_TESTS("delete-transactions", |
514 DeleteTransactions); | 516 DeleteTransactions); |
515 PAGE_CYCLER_DATABASE_TESTS("pseudo-random-transactions", | 517 PAGE_CYCLER_DATABASE_TESTS("pseudo-random-transactions", |
516 PseudoRandomTransactions); | 518 PseudoRandomTransactions); |
517 #endif | 519 #endif |
518 | 520 |
519 } // namespace | 521 } // namespace |
OLD | NEW |