Commit f326f2b3 authored by Friedrich Horschig's avatar Friedrich Horschig Committed by Commit Bot

[ChromeOS][Flaky] Disable three flaky ChromeVox tests

This CL disabled these flaky tests:
TextFocusFeedback
DoubleFocusAlertDialogFeedback
ToggleOnKeyUp

They have caused failures recently and show a history of flakiness:
https://test-results.appspot.com/dashboards/flakiness_dashboard.html#tests=ChromeVoxEventWatcherUnitTest

TBR=dmazzoni@chromium.org

Bug: 912390, 622387
Change-Id: If7647be13420ff98df3a51d0fa156635f181c074
Reviewed-on: https://chromium-review.googlesource.com/c/1371476Reviewed-by: default avatarFriedrich Horschig [CET] <fhorschig@chromium.org>
Commit-Queue: Friedrich Horschig [CET] <fhorschig@chromium.org>
Cr-Commit-Position: refs/heads/master@{#615495}
parent e4d3737e
...@@ -114,7 +114,8 @@ TEST_F('ChromeVoxEventWatcherUnitTest', 'FocusLinksBackwards', function() { ...@@ -114,7 +114,8 @@ TEST_F('ChromeVoxEventWatcherUnitTest', 'FocusLinksBackwards', function() {
/** /**
* Test feedback when an editable text field gets focus. * Test feedback when an editable text field gets focus.
*/ */
TEST_F('ChromeVoxEventWatcherUnitTest', 'TextFocusFeedback', function() { // Flaky on Chromium OS: crbug.com/622387, crbug.com/912390.
TEST_F('ChromeVoxEventWatcherUnitTest', 'DISABLED_TextFocusFeedback', function() {
this.loadHtml('<div>' + this.loadHtml('<div>' +
'<label for="mytext">Label</label>' + '<label for="mytext">Label</label>' +
'<input id="mytext" value="Value" title="Title" />' + '<input id="mytext" value="Value" title="Title" />' +
...@@ -191,7 +192,8 @@ TEST_F('ChromeVoxEventWatcherUnitTest', 'AlertDialogFeedback', function() { ...@@ -191,7 +192,8 @@ TEST_F('ChromeVoxEventWatcherUnitTest', 'AlertDialogFeedback', function() {
* quickly - make sure the notification that we entered the dialog * quickly - make sure the notification that we entered the dialog
* isn't interrupted. * isn't interrupted.
*/ */
TEST_F('ChromeVoxEventWatcherUnitTest', 'DoubleFocusAlertDialogFeedback', // Flaky on Chromium OS: crbug.com/622387, crbug.com/912390.
TEST_F('ChromeVoxEventWatcherUnitTest', 'DISABLED_DoubleFocusAlertDialogFeedback',
function() { function() {
this.loadHtml('<div>' + this.loadHtml('<div>' +
'<div role="alertdialog">' + '<div role="alertdialog">' +
...@@ -682,7 +684,8 @@ TEST_F('ChromeVoxEventWatcherUnitTest', 'DISABLED_DateWidget', function() { ...@@ -682,7 +684,8 @@ TEST_F('ChromeVoxEventWatcherUnitTest', 'DISABLED_DateWidget', function() {
* Test that ChromeVox speaks the correct state when a focused control * Test that ChromeVox speaks the correct state when a focused control
* changes as the result of a key up, not just key down. * changes as the result of a key up, not just key down.
*/ */
TEST_F('ChromeVoxEventWatcherUnitTest', 'ToggleOnKeyUp', function() { // Flaky on Chromium OS: crbug.com/622387, crbug.com/912390.
TEST_F('ChromeVoxEventWatcherUnitTest', 'DISABLED_ToggleOnKeyUp', function() {
this.loadHtml('<div>' + this.loadHtml('<div>' +
'<div tabIndex=0 id="pressable" role="button" aria-pressed="false">' + '<div tabIndex=0 id="pressable" role="button" aria-pressed="false">' +
'Toggle' + 'Toggle' +
......
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