Commit b72c06c8 authored by Elly Fong-Jones's avatar Elly Fong-Jones Committed by Commit Bot

sheriff: mark InputHandlerProxyEventQueueTest disabled under sanitizers

This test is flaky under asan & tsan.

Bug: 1029250
Change-Id: I9fd12f89cafdd0d01de1b59941f7d0bf07212c1a
Tbr: bokan@chromium.org
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1972503Reviewed-by: default avatarElly Fong-Jones <ellyjones@chromium.org>
Commit-Queue: Elly Fong-Jones <ellyjones@chromium.org>
Cr-Commit-Position: refs/heads/master@{#725975}
parent 0515a565
...@@ -1600,7 +1600,18 @@ TEST_F(InputHandlerProxyEventQueueTest, VSyncAlignedGestureScroll) { ...@@ -1600,7 +1600,18 @@ TEST_F(InputHandlerProxyEventQueueTest, VSyncAlignedGestureScroll) {
testing::Mock::VerifyAndClearExpectations(&mock_input_handler_); testing::Mock::VerifyAndClearExpectations(&mock_input_handler_);
} }
TEST_F(InputHandlerProxyEventQueueTest, VSyncAlignedGestureScrollPinchScroll) { #if defined(ADDRESS_SANITIZER) || defined(THREAD_SANITIZER)
// Flaky under sanitizers and in other "slow" bot configs:
// https://crbug.com/1029250
#define MAYBE_VSyncAlignedGestureScrollPinchScroll \
DISABLED_VSyncAlignedGestureScrollPinchScroll
#else
#define MAYBE_VSyncAlignedGestureScrollPinchScroll \
VSyncAlignedGestureScrollPinchScroll
#endif
TEST_F(InputHandlerProxyEventQueueTest,
MAYBE_VSyncAlignedGestureScrollPinchScroll) {
// Handle scroll on compositor. // Handle scroll on compositor.
cc::InputHandlerScrollResult scroll_result_did_scroll_; cc::InputHandlerScrollResult scroll_result_did_scroll_;
scroll_result_did_scroll_.did_scroll = true; scroll_result_did_scroll_.did_scroll = true;
......
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