Commit 11b2bb0c authored by Wez's avatar Wez Committed by Commit Bot

Disable FlingControllerTest.ControllerHandlesTouchpadGestureFling.

This test often flakes on the Fuchsia/ARM64 FYI bot, indicating that it
is likely racey under pathological scheduler timings.

TBR=tdresser@chromium.org

Bug: 836996
Change-Id: I365050083bc4a7ee21d3ef5f1e05ccee35dc6cb1
Reviewed-on: https://chromium-review.googlesource.com/1161326Reviewed-by: default avatarWez <wez@chromium.org>
Commit-Queue: Wez <wez@chromium.org>
Cr-Commit-Position: refs/heads/master@{#580355}
parent f0d3e3de
...@@ -154,7 +154,8 @@ TEST_F(FlingControllerTest, ...@@ -154,7 +154,8 @@ TEST_F(FlingControllerTest,
EXPECT_EQ(WebInputEvent::kGestureScrollEnd, last_sent_gesture_.GetType()); EXPECT_EQ(WebInputEvent::kGestureScrollEnd, last_sent_gesture_.GetType());
} }
TEST_F(FlingControllerTest, ControllerHandlesTouchpadGestureFling) { // TODO(https://crbug.com/836996): Timing-dependent flakes on some platforms.
TEST_F(FlingControllerTest, DISABLED_ControllerHandlesTouchpadGestureFling) {
base::TimeTicks progress_time = base::TimeTicks::Now(); base::TimeTicks progress_time = base::TimeTicks::Now();
SimulateFlingStart(blink::kWebGestureDeviceTouchpad, gfx::Vector2dF(1000, 0)); SimulateFlingStart(blink::kWebGestureDeviceTouchpad, gfx::Vector2dF(1000, 0));
EXPECT_TRUE(FlingInProgress()); EXPECT_TRUE(FlingInProgress());
......
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