| 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 560 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 571 PAGE_CYCLER_DATABASE_TESTS("insert-transactions", | 571 PAGE_CYCLER_DATABASE_TESTS("insert-transactions", |
| 572 InsertTransactions); | 572 InsertTransactions); |
| 573 PAGE_CYCLER_DATABASE_TESTS("update-transactions", | 573 PAGE_CYCLER_DATABASE_TESTS("update-transactions", |
| 574 UpdateTransactions); | 574 UpdateTransactions); |
| 575 PAGE_CYCLER_DATABASE_TESTS("delete-transactions", | 575 PAGE_CYCLER_DATABASE_TESTS("delete-transactions", |
| 576 DeleteTransactions); | 576 DeleteTransactions); |
| 577 PAGE_CYCLER_DATABASE_TESTS("pseudo-random-transactions", | 577 PAGE_CYCLER_DATABASE_TESTS("pseudo-random-transactions", |
| 578 PseudoRandomTransactions); | 578 PseudoRandomTransactions); |
| 579 #endif | 579 #endif |
| 580 | 580 |
| 581 #if defined(OS_WIN) | 581 // Indexed DB tests. |
| 582 #ifndef NDEBUG | |
| 583 // Disabled in debug builds on Windows. | 582 // Disabled in debug builds on Windows. |
| 584 // Bug http://code.google.com/p/chromium/issues/detail?id=67918 | 583 // Bug http://code.google.com/p/chromium/issues/detail?id=67918 |
| 585 #define BasicInsert DISABLED_BasicInsert | 584 #if !defined(OS_WIN) || defined(NDEBUG) |
| 586 #endif // NDEBUG | |
| 587 #endif // OS_WIN | |
| 588 | |
| 589 // Indexed DB tests. | |
| 590 PAGE_CYCLER_IDB_TESTS("basic_insert", BasicInsert); | 585 PAGE_CYCLER_IDB_TESTS("basic_insert", BasicInsert); |
| 586 #endif |
| 591 | 587 |
| 592 } // namespace | 588 } // namespace |
| OLD | NEW |