Skip to content

Commit

Permalink
WebKit roll: 67957:68016
Browse files Browse the repository at this point in the history
    Marked IndexedDBBrowserTest.{CursorTest,IndexTest,KeyPathTest} as FAIL under linux.

    BUG=none
    TEST=none
    TBR=atwilson,jorlow

    Review URL: http://codereview.chromium.org/3437014


git-svn-id: svn://svn.chromium.org/chrome/trunk/src@60172 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
caseq@google.com committed Sep 22, 2010
1 parent 1ac9779 commit 9286b6d
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DEPS
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ vars = {
"googlecode_url": "http://%s.googlecode.com/svn",
"webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk",
"nacl_trunk": "http://src.chromium.org/native_client/trunk",
"webkit_revision": "67957",
"webkit_revision": "68016",
"ffmpeg_revision": "58574",
"skia_revision": "593",
"chromium_git": "http://src.chromium.org/git",
Expand Down
17 changes: 14 additions & 3 deletions chrome/browser/in_process_webkit/indexed_db_browsertest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,25 @@ class IndexedDBBrowserTest : public InProcessBrowserTest {
}
};

IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, CursorTest) {
// Fails after WebKit roll 67957:68016, http://crbug.com/56509
#if defined(OS_LINUX)
#define MAYBE_CursorTest FAILS_CursorTest
#define MAYBE_IndexTest FAILS_IndexTest
#define MAYBE_KeyPathTest FAILS_KeyPathTest
#else
#define MAYBE_CursorTest CursorTest
#define MAYBE_IndexTest IndexTest
#define MAYBE_KeyPathTest KeyPathTest
#endif

IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, MAYBE_CursorTest) {
SimpleTest(testUrl(FilePath(FILE_PATH_LITERAL("cursor_test.html"))));
}

IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, IndexTest) {
IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, MAYBE_IndexTest) {
SimpleTest(testUrl(FilePath(FILE_PATH_LITERAL("index_test.html"))));
}

IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, KeyPathTest) {
IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, MAYBE_KeyPathTest) {
SimpleTest(testUrl(FilePath(FILE_PATH_LITERAL("key_path_test.html"))));
}

0 comments on commit 9286b6d

Please sign in to comment.