diff options
author | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-25 19:31:32 +0000 |
---|---|---|
committer | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-25 19:31:32 +0000 |
commit | cb7ef232a4068980051971df8bf43c2c1ff5f8e5 (patch) | |
tree | 696715c9a87bf648708bbab785d999bbcfd97db0 /chrome/test | |
parent | 6df30afbe287a948fd7f229029e6ec8e88d2735a (diff) | |
download | chromium_src-cb7ef232a4068980051971df8bf43c2c1ff5f8e5.zip chromium_src-cb7ef232a4068980051971df8bf43c2c1ff5f8e5.tar.gz chromium_src-cb7ef232a4068980051971df8bf43c2c1ff5f8e5.tar.bz2 |
Disabling the PageCyclerIndexedDatabaseTest.IndexedDBBasicInsertFile on Windows
debug builds. Now for real.
BUG=67918
TEST=none
TBR=hans
Review URL: http://codereview.chromium.org/6055009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70173 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test')
-rw-r--r-- | chrome/test/page_cycler/page_cycler_test.cc | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/chrome/test/page_cycler/page_cycler_test.cc b/chrome/test/page_cycler/page_cycler_test.cc index ec095db..63d507f 100644 --- a/chrome/test/page_cycler/page_cycler_test.cc +++ b/chrome/test/page_cycler/page_cycler_test.cc @@ -578,15 +578,11 @@ PAGE_CYCLER_DATABASE_TESTS("pseudo-random-transactions", PseudoRandomTransactions); #endif -#if defined(OS_WIN) -#ifndef NDEBUG +// Indexed DB tests. // Disabled in debug builds on Windows. // Bug http://code.google.com/p/chromium/issues/detail?id=67918 -#define BasicInsert DISABLED_BasicInsert -#endif // NDEBUG -#endif // OS_WIN - -// Indexed DB tests. +#if !defined(OS_WIN) || defined(NDEBUG) PAGE_CYCLER_IDB_TESTS("basic_insert", BasicInsert); +#endif } // namespace |