Commit 37e72a2f authored by tkent@chromium.org's avatar tkent@chromium.org

Disable IDBTransactionTest.EnsureLifetime if ENABLE(OILPAN).

BUG=379616
TBR=oilpan-reviews@chromium.org

Review URL: https://codereview.chromium.org/308963003

git-svn-id: svn://svn.chromium.org/blink/trunk@175249 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent f29d24d1
......@@ -86,7 +86,13 @@ private:
FakeIDBDatabaseCallbacks() { }
};
TEST_F(IDBTransactionTest, EnsureLifetime)
// crbug.com/379616
#if ENABLE(OILPAN)
#define MAYBE_EnsureLifetime DISABLED_EnsureLifetime
#else
#define MAYBE_EnsureLifetime EnsureLifetime
#endif
TEST_F(IDBTransactionTest, MAYBE_EnsureLifetime)
{
OwnPtr<FakeWebIDBDatabase> backend = FakeWebIDBDatabase::create();
Persistent<IDBDatabase> db = IDBDatabase::create(executionContext(), backend.release(), FakeIDBDatabaseCallbacks::create());
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment