diff options
author | hans@chromium.org <hans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-15 09:14:35 +0000 |
---|---|---|
committer | hans@chromium.org <hans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-15 09:14:35 +0000 |
commit | b442198e62ca43d251f8d2731977912526561ff4 (patch) | |
tree | 8d494b0b03655ab6bb5649b668a5abd96286d366 /content/browser | |
parent | f0b13dfd7bfc043fe967167b0fb882d945dbc252 (diff) | |
download | chromium_src-b442198e62ca43d251f8d2731977912526561ff4.zip chromium_src-b442198e62ca43d251f8d2731977912526561ff4.tar.gz chromium_src-b442198e62ca43d251f8d2731977912526561ff4.tar.bz2 |
Re-enable IndexedDB browser tests.
These tests have been disabled because of flakiness (see the bug below), but
it's possible that r88972 fixed the underlying problem.
BUG=70773
TEST=browser_tests
Review URL: http://codereview.chromium.org/7146012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@89153 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser')
-rw-r--r-- | content/browser/in_process_webkit/indexed_db_browsertest.cc | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/content/browser/in_process_webkit/indexed_db_browsertest.cc b/content/browser/in_process_webkit/indexed_db_browsertest.cc index 9670a37..742e1f9 100644 --- a/content/browser/in_process_webkit/indexed_db_browsertest.cc +++ b/content/browser/in_process_webkit/indexed_db_browsertest.cc @@ -68,13 +68,13 @@ IN_PROC_BROWSER_TEST_F(IndexedDBLevelDBBrowserTest, CursorTest) { SimpleTest(testUrl(FilePath(FILE_PATH_LITERAL("cursor_test.html")))); } -// Flaky: http://crbug.com/70773 -IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, DISABLED_IndexTest) { +// TODO(hans): If this starts failing, please disable and ping crbug.com/70773. +IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, IndexTest) { SimpleTest(testUrl(FilePath(FILE_PATH_LITERAL("index_test.html")))); } -// Flaky: http://crbug.com/70773 -IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, DISABLED_KeyPathTest) { +// TODO(hans): If this starts failing, please disable and ping crbug.com/70773. +IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, KeyPathTest) { SimpleTest(testUrl(FilePath(FILE_PATH_LITERAL("key_path_test.html")))); } @@ -82,8 +82,8 @@ IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, TransactionGetTest) { SimpleTest(testUrl(FilePath(FILE_PATH_LITERAL("transaction_get_test.html")))); } -// Flaky: http://crbug.com/70773 -IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, DISABLED_ObjectStoreTest) { +// TODO(hans): If this starts failing, please disable and ping crbug.com/70773. +IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, ObjectStoreTest) { SimpleTest(testUrl(FilePath(FILE_PATH_LITERAL("object_store_test.html")))); } @@ -91,13 +91,13 @@ IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, DatabaseTest) { SimpleTest(testUrl(FilePath(FILE_PATH_LITERAL("database_test.html")))); } -// Flaky: http://crbug.com/70773 -IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, DISABLED_TransactionTest) { +// TODO(hans): If this starts failing, please disable and ping crbug.com/70773. +IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, TransactionTest) { SimpleTest(testUrl(FilePath(FILE_PATH_LITERAL("transaction_test.html")))); } -// Flaky: http://crbug.com/70773 -IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, DISABLED_DoesntHangTest) { +// TODO(hans): If this starts failing, please disable and ping crbug.com/70773. +IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, DoesntHangTest) { SimpleTest(testUrl(FilePath( FILE_PATH_LITERAL("transaction_run_forever.html")))); ui_test_utils::CrashTab(browser()->GetSelectedTabContents()); |