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

Side by Side Diff: chrome/test/page_cycler/page_cycler_test.cc

Issue 6055009: Disabling the PageCyclerIndexedDatabaseTest.IndexedDBBasicInsertFile on Windo... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 12 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 | Annotate | Revision Log
« 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) 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
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
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