Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 Loading... | |
| 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 |
| OLD | NEW |