diff options
author | jonross <jonross@chromium.org> | 2014-09-08 07:52:12 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-09-08 14:55:09 +0000 |
commit | 6c0caa104a6862e8b8b5ebd541ad7ab82338c5b0 (patch) | |
tree | ca1e2c201ba0fb5ec4d5b49f31ecbb7783652638 /ash/system | |
parent | 9496620249d7bf393a541b78add51f2999f2c6ea (diff) | |
download | chromium_src-6c0caa104a6862e8b8b5ebd541ad7ab82338c5b0.zip chromium_src-6c0caa104a6862e8b8b5ebd541ad7ab82338c5b0.tar.gz chromium_src-6c0caa104a6862e8b8b5ebd541ad7ab82338c5b0.tar.bz2 |
Disable failing TouchFeedback tests.
Disable WebNotificationTrayTest.TouchFeedback and TouchFeedbackCancellation which are failing on ASAN machines.
TBR=skuhne@chromium.org
BUG=411881
Review URL: https://codereview.chromium.org/551833002
Cr-Commit-Position: refs/heads/master@{#293724}
Diffstat (limited to 'ash/system')
-rw-r--r-- | ash/system/web_notification/web_notification_tray_unittest.cc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/ash/system/web_notification/web_notification_tray_unittest.cc b/ash/system/web_notification/web_notification_tray_unittest.cc index 2e89b66..4871753 100644 --- a/ash/system/web_notification/web_notification_tray_unittest.cc +++ b/ash/system/web_notification/web_notification_tray_unittest.cc @@ -478,12 +478,14 @@ TEST_F(WebNotificationTrayTest, MAYBE_PopupAndSystemTrayMultiDisplay) { EXPECT_EQ(bottom_second, GetPopupWorkAreaBottomForTray(GetSecondaryTray())); } +// TODO(jonross): This test is failing on ASAN bots, fix the failure and +// re-enable. (crbug.com/411881) // TODO(jonross): Replace manually creating TouchEvent with // EventGenerator.PressTouch/ReleaseTouch. Currently they set a width on the // touch event causing the gesture recognizer to target a different view. #if defined(OS_CHROMEOS) // Tests that there is visual feedback for touch presses. -TEST_F(WebNotificationTrayTest, TouchFeedback) { +TEST_F(WebNotificationTrayTest, DISABLED_TouchFeedback) { AddNotification("test_id"); RunAllPendingInMessageLoop(); WebNotificationTray* tray = GetTray(); @@ -512,9 +514,11 @@ TEST_F(WebNotificationTrayTest, TouchFeedback) { EXPECT_FALSE(tray->IsMessageCenterBubbleVisible()); } +// TODO(jonross): This test is failing on ASAN bots, fix the failure and +// re-enable. (crbug.com/411881) // Tests that while touch presses trigger visual feedback, that subsequent non // tap gestures cancel the feedback without triggering the message center. -TEST_F(WebNotificationTrayTest, TouchFeedbackCancellation) { +TEST_F(WebNotificationTrayTest, DISABLED_TouchFeedbackCancellation) { AddNotification("test_id"); RunAllPendingInMessageLoop(); WebNotificationTray* tray = GetTray(); |