| 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_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 474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 485 | 485 |
| 486 // http (localhost) tests | 486 // http (localhost) tests |
| 487 PAGE_CYCLER_HTTP_TESTS("moz", MozHttp); | 487 PAGE_CYCLER_HTTP_TESTS("moz", MozHttp); |
| 488 PAGE_CYCLER_HTTP_TESTS("intl1", Intl1Http); | 488 PAGE_CYCLER_HTTP_TESTS("intl1", Intl1Http); |
| 489 PAGE_CYCLER_HTTP_TESTS("intl2", Intl2Http); | 489 PAGE_CYCLER_HTTP_TESTS("intl2", Intl2Http); |
| 490 PAGE_CYCLER_HTTP_TESTS("dom", DomHttp); | 490 PAGE_CYCLER_HTTP_TESTS("dom", DomHttp); |
| 491 PAGE_CYCLER_HTTP_TESTS("bloat", BloatHttp); | 491 PAGE_CYCLER_HTTP_TESTS("bloat", BloatHttp); |
| 492 | 492 |
| 493 // HTML5 database tests | 493 // HTML5 database tests |
| 494 // These tests are _really_ slow on XP/Vista. | 494 // These tests are _really_ slow on XP/Vista. |
| 495 // crbug.com/53140: The Mac perf bot is not happy with this test suite either, | 495 #if !defined(OS_WIN) |
| 496 // even though it doesn't seem to be a problem related to this test suite. | |
| 497 #if !defined(OS_WIN) && !defined(OS_MAC) | |
| 498 PAGE_CYCLER_DATABASE_TESTS("select-transactions", | 496 PAGE_CYCLER_DATABASE_TESTS("select-transactions", |
| 499 SelectTransactions); | 497 SelectTransactions); |
| 500 PAGE_CYCLER_DATABASE_TESTS("select-readtransactions", | 498 PAGE_CYCLER_DATABASE_TESTS("select-readtransactions", |
| 501 SelectReadTransactions); | 499 SelectReadTransactions); |
| 502 PAGE_CYCLER_DATABASE_TESTS("select-readtransactions-read-results", | 500 PAGE_CYCLER_DATABASE_TESTS("select-readtransactions-read-results", |
| 503 SelectReadTransactionsReadResults); | 501 SelectReadTransactionsReadResults); |
| 504 PAGE_CYCLER_DATABASE_TESTS("insert-transactions", | 502 PAGE_CYCLER_DATABASE_TESTS("insert-transactions", |
| 505 InsertTransactions); | 503 InsertTransactions); |
| 506 PAGE_CYCLER_DATABASE_TESTS("update-transactions", | 504 PAGE_CYCLER_DATABASE_TESTS("update-transactions", |
| 507 UpdateTransactions); | 505 UpdateTransactions); |
| 508 PAGE_CYCLER_DATABASE_TESTS("delete-transactions", | 506 PAGE_CYCLER_DATABASE_TESTS("delete-transactions", |
| 509 DeleteTransactions); | 507 DeleteTransactions); |
| 510 PAGE_CYCLER_DATABASE_TESTS("pseudo-random-transactions", | 508 PAGE_CYCLER_DATABASE_TESTS("pseudo-random-transactions", |
| 511 PseudoRandomTransactions); | 509 PseudoRandomTransactions); |
| 512 #endif | 510 #endif |
| 513 | 511 |
| 514 } // namespace | 512 } // namespace |
| OLD | NEW |