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

Unified Diff: ui/aura/root_window_unittest.cc

Issue 136013002: Disable flaky RootWindowTest.TouchMovesHeld on ChromeOS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Disable flaky RootWindowTest.TouchMovesHeld on ChromeOS. Created 6 years, 11 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: ui/aura/root_window_unittest.cc
diff --git a/ui/aura/root_window_unittest.cc b/ui/aura/root_window_unittest.cc
index 645e2f99eec274923d69f836ae3aa0a25290e2b9..5b7898218d3057360629d3e805b3410b82b3aecc 100644
--- a/ui/aura/root_window_unittest.cc
+++ b/ui/aura/root_window_unittest.cc
@@ -668,7 +668,13 @@ TEST_F(RootWindowTest, MouseMovesHeld) {
EXPECT_TRUE(filter->events().empty());
}
-TEST_F(RootWindowTest, TouchMovesHeld) {
+#if defined(OS_CHROMEOS)
+// This test may be flaky on Chromium OS valgrind bots: http://crbug.com/333644
+#define MAYBE_TouchMovesHeld DISABLED_TouchMovesHeld
+#else
+#define MAYBE_TouchMovesHeld TouchMovesHeld
+#endif
+TEST_F(RootWindowTest, MAYBE_TouchMovesHeld) {
EventFilterRecorder* filter = new EventFilterRecorder;
root_window()->SetEventFilter(filter); // passes ownership
« 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