| 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 b2f0cf5ccd3a6e2ba02e544156aeb91b6a713577..10f02f78ba1246f69ef01a73809927d6c21c9b94 100644
|
| --- a/content/browser/in_process_webkit/indexed_db_layout_browsertest.cc
|
| +++ b/content/browser/in_process_webkit/indexed_db_layout_browsertest.cc
|
| @@ -93,6 +93,16 @@ static const char* kRegressionTests[] = {
|
| NULL
|
| };
|
|
|
| +const char* kIntVersionTests[] = {
|
| + "abort-in-initial-upgradeneeded.html",
|
| + "open-with-version-blocked.html",
|
| + "open-with-version-initial-version.html",
|
| +// "open-with-version-with-delete.html",
|
| + "open-with-version.html",
|
| + "setversion-upgradeneeded-intertwined.html",
|
| + NULL
|
| +};
|
| +
|
| }
|
|
|
| IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, BasicTests) {
|
| @@ -115,6 +125,10 @@ IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, TransactionTests) {
|
| RunLayoutTests(kTransactionTests);
|
| }
|
|
|
| +IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, IntVersionTests) {
|
| + RunLayoutTests(kIntVersionTests);
|
| +}
|
| +
|
| // Frequent flaky timeouts. http://crbug.com/123685
|
| IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, DISABLED_RegressionTests) {
|
| RunLayoutTests(kRegressionTests);
|
|
|