Commit 902f1435 authored by David 'Digit' Turner's avatar David 'Digit' Turner Committed by Commit Bot

android: Disable flaky test.

See related bug entry for details.

BUG=912117
R=nyquist@chromium.org, thildebr@chromium.org

Change-Id: I7d1a46f84fe58c4b93a03b9445ae6902831d0538
Reviewed-on: https://chromium-review.googlesource.com/c/1373847Reviewed-by: default avatarTommy Nyquist <nyquist@chromium.org>
Commit-Queue: David Turner <digit@chromium.org>
Cr-Commit-Position: refs/heads/master@{#615951}
parent 3a4d2b2c
......@@ -9,6 +9,7 @@
#include "base/message_loop/message_loop.h"
#include "base/test/scoped_task_environment.h"
#include "base/threading/thread.h"
#include "build/build_config.h"
#include "components/leveldb_proto/proto_leveldb_wrapper.h"
#include "components/leveldb_proto/testing/proto/test_db.pb.h"
#include "testing/gtest/include/gtest/gtest.h"
......@@ -109,7 +110,12 @@ TEST_F(SharedProtoDatabaseTest, CreateClient_SucceedsWithCreate) {
ASSERT_TRUE(success);
}
// TODO(912117): Fix flaky test!
#if !defined(OS_ANDROID)
TEST_F(SharedProtoDatabaseTest, DISABLED_CreateClient_FailsWithoutCreate) {
#else
TEST_F(SharedProtoDatabaseTest, CreateClient_FailsWithoutCreate) {
#endif
bool success = false;
GetClientAndWait<TestProto>(db(), kDefaultNamespace, kDefaultTypePrefix,
false /* create_if_missing */, &success);
......
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