Chromium Code Reviews| Index: content/browser/in_process_webkit/indexed_db_layout_browsertest.cc |
| diff --git a/content/browser/in_process_webkit/indexed_db_layout_browsertest.cc b/content/browser/in_process_webkit/indexed_db_layout_browsertest.cc |
| index a05f4157e2551e683a1bc37a5963e0edefbec9bc..63addbafc654e43e5f9794957e494d60cc6f4b70 100644 |
| --- a/content/browser/in_process_webkit/indexed_db_layout_browsertest.cc |
| +++ b/content/browser/in_process_webkit/indexed_db_layout_browsertest.cc |
| @@ -111,6 +111,13 @@ const char* kIntVersionTests2[] = { |
| NULL |
| }; |
| +// TODO(jsbell): Remove this when data has been gathered. |
| +static const char* kFlakyTests[] = { |
| + // Flaky: http://crbug.com/165671 |
| + "key-type-array.html", |
| + NULL |
| +}; |
| + |
| } |
| IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, BasicTests) { |
| @@ -147,4 +154,8 @@ IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, RegressionTests) { |
| RunLayoutTests(kRegressionTests); |
| } |
| +IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, FLAKY_FlakyTests) { |
| + RunLayoutTests(kFlakyTests); |
|
dgrogan
2013/02/26 21:14:36
FYI, you could do away with kFlakyTests and just s
|
| +} |
| + |
| } // namespace content |