Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1333)

Unified Diff: chrome/browser/bookmarks/managed_bookmark_service_unittest.cc

Issue 2321583002: Disable ManagedBookmarkServiceTest.EmptyManagedNode on Android. (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/bookmarks/managed_bookmark_service_unittest.cc
diff --git a/chrome/browser/bookmarks/managed_bookmark_service_unittest.cc b/chrome/browser/bookmarks/managed_bookmark_service_unittest.cc
index 9d6ddec2585343ad4e65bcc4e779f79c6bdf8b82..f926f4ce7df5754310301f8714fd1691c1b5314c 100644
--- a/chrome/browser/bookmarks/managed_bookmark_service_unittest.cc
+++ b/chrome/browser/bookmarks/managed_bookmark_service_unittest.cc
@@ -141,7 +141,13 @@ class ManagedBookmarkServiceTest : public testing::Test {
DISALLOW_COPY_AND_ASSIGN(ManagedBookmarkServiceTest);
};
-TEST_F(ManagedBookmarkServiceTest, EmptyManagedNode) {
+// Crashes on Android only. http://crbug.com/644570
+#if defined(OS_ANDROID)
+#define MAYBE_EmptyManagedNode DISABLED_EmptyManagedNode
+#else
+#define MAYBE_EmptyManagedNode EmptyManagedNode
+#endif
+TEST_F(ManagedBookmarkServiceTest, MAYBE_EmptyManagedNode) {
// Verifies that the managed node is empty and invisible when the policy is
// not set.
model_->RemoveObserver(&observer_);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698