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

Unified Diff: content/browser/renderer_host/input/synthetic_gesture_controller_new_unittest.cc

Issue 60573004: Disable SyntheticGestureControllerNewTest.SingleGesture on windows due (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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: content/browser/renderer_host/input/synthetic_gesture_controller_new_unittest.cc
diff --git a/content/browser/renderer_host/input/synthetic_gesture_controller_new_unittest.cc b/content/browser/renderer_host/input/synthetic_gesture_controller_new_unittest.cc
index 69f52025f44e519df0f388ef2f5051fe921be991..5d00354035c263f4885c0f36e468ca416aba6a08 100644
--- a/content/browser/renderer_host/input/synthetic_gesture_controller_new_unittest.cc
+++ b/content/browser/renderer_host/input/synthetic_gesture_controller_new_unittest.cc
@@ -186,7 +186,13 @@ class SyntheticGestureControllerNewTest : public testing::Test {
const MockSyntheticGestureTarget* target_ptr_;
};
-TEST_F(SyntheticGestureControllerNewTest, SingleGesture) {
+// http://crbug.com/314272
+#if defined(OS_WIN)
+#define MAYBE_SingleGesture DISABLED_SingleGesture
+#else
+#define MAYBE_SingleGesture SingleGesture
+#endif
+TEST_F(SyntheticGestureControllerNewTest, MAYBE_SingleGesture) {
bool finished;
scoped_ptr<MockSyntheticGesture> gesture(
new MockSyntheticGesture(&finished, 3));
« 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