summaryrefslogtreecommitdiffstats
path: root/sync/syncable
diff options
context:
space:
mode:
authortfarina <tfarina@chromium.org>2015-08-12 06:35:11 -0700
committerCommit bot <commit-bot@chromium.org>2015-08-12 13:35:42 +0000
commit1c2f3def31972837b72d970e25417b913df74b7a (patch)
treef27464f40e0a2ffe185db9a69537dbd9f07e32f4 /sync/syncable
parent12ac6b8f83a09d8f888dfb031787149637a9425d (diff)
downloadchromium_src-1c2f3def31972837b72d970e25417b913df74b7a.zip
chromium_src-1c2f3def31972837b72d970e25417b913df74b7a.tar.gz
chromium_src-1c2f3def31972837b72d970e25417b913df74b7a.tar.bz2
Remove Android filter file for sync_unit_tests.
BUG=339980 TEST=sync_unit_tests R=jbudorick@chromium.org,atwilson@chromium.org Review URL: https://codereview.chromium.org/1282923005 Cr-Commit-Position: refs/heads/master@{#343011}
Diffstat (limited to 'sync/syncable')
-rw-r--r--sync/syncable/syncable_unittest.cc8
1 files changed, 7 insertions, 1 deletions
diff --git a/sync/syncable/syncable_unittest.cc b/sync/syncable/syncable_unittest.cc
index 850be5f..52baee4 100644
--- a/sync/syncable/syncable_unittest.cc
+++ b/sync/syncable/syncable_unittest.cc
@@ -122,7 +122,13 @@ TestDirectory::TestDirectory(
TestDirectory::~TestDirectory() { }
-TEST(OnDiskSyncableDirectory, FailInitialWrite) {
+// crbug.com/144422
+#if defined(OS_ANDROID)
+#define MAYBE_FailInitialWrite DISABLED_FailInitialWrite
+#else
+#define MAYBE_FailInitialWrite FailInitialWrite
+#endif
+TEST(OnDiskSyncableDirectory, MAYBE_FailInitialWrite) {
base::MessageLoop message_loop;
FakeEncryptor encryptor;
TestUnrecoverableErrorHandler handler;