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

Side by Side Diff: content/browser/in_process_webkit/indexed_db_layout_browsertest.cc

Issue 12334099: IndexedDB: Re-enable key-type-array test as FLAKY to check current behavior (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "content/test/layout_browsertest.h" 5 #include "content/test/layout_browsertest.h"
6 6
7 namespace content { 7 namespace content {
8 8
9 class IndexedDBLayoutTest : public InProcessBrowserLayoutTest { 9 class IndexedDBLayoutTest : public InProcessBrowserLayoutTest {
10 public: 10 public:
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 const char* kIntVersionTests2[] = { 104 const char* kIntVersionTests2[] = {
105 "delete-in-upgradeneeded-close-in-versionchange.html", 105 "delete-in-upgradeneeded-close-in-versionchange.html",
106 "intversion-gated-on-delete.html", 106 "intversion-gated-on-delete.html",
107 "intversion-long-queue.html", 107 "intversion-long-queue.html",
108 "intversion-omit-parameter.html", 108 "intversion-omit-parameter.html",
109 "intversion-open-with-version.html", 109 "intversion-open-with-version.html",
110 "intversion-upgrades.html", 110 "intversion-upgrades.html",
111 NULL 111 NULL
112 }; 112 };
113 113
114 // TODO(jsbell): Remove this when data has been gathered.
115 static const char* kFlakyTests[] = {
116 // Flaky: http://crbug.com/165671
117 "key-type-array.html",
118 NULL
119 };
120
114 } 121 }
115 122
116 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, BasicTests) { 123 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, BasicTests) {
117 RunLayoutTests(kBasicTests); 124 RunLayoutTests(kBasicTests);
118 } 125 }
119 126
120 127
121 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, ComplexTests) { 128 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, ComplexTests) {
122 RunLayoutTests(kComplexTests); 129 RunLayoutTests(kComplexTests);
123 } 130 }
(...skipping 16 matching lines...) Expand all
140 } 147 }
141 148
142 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, IntVersionTests2) { 149 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, IntVersionTests2) {
143 RunLayoutTests(kIntVersionTests2); 150 RunLayoutTests(kIntVersionTests2);
144 } 151 }
145 152
146 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, RegressionTests) { 153 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, RegressionTests) {
147 RunLayoutTests(kRegressionTests); 154 RunLayoutTests(kRegressionTests);
148 } 155 }
149 156
157 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, FLAKY_FlakyTests) {
158 RunLayoutTests(kFlakyTests);
dgrogan 2013/02/26 21:14:36 FYI, you could do away with kFlakyTests and just s
159 }
160
150 } // namespace content 161 } // namespace content
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