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

Unified Diff: chrome/browser/chromeos/accessibility/spoken_feedback_browsertest.cc

Issue 2186953002: Disable SpokenFeedbackTest.EnableSpokenFeedback on ASan (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 months 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: chrome/browser/chromeos/accessibility/spoken_feedback_browsertest.cc
diff --git a/chrome/browser/chromeos/accessibility/spoken_feedback_browsertest.cc b/chrome/browser/chromeos/accessibility/spoken_feedback_browsertest.cc
index a26e6a0076830037b4f055d3a28202e01483b32c..8c9d98db878732662f1c4796e912dfc722ee797e 100644
--- a/chrome/browser/chromeos/accessibility/spoken_feedback_browsertest.cc
+++ b/chrome/browser/chromeos/accessibility/spoken_feedback_browsertest.cc
@@ -295,7 +295,13 @@ INSTANTIATE_TEST_CASE_P(
::testing::Values(kTestAsNormalUser,
kTestAsGuestUser));
-IN_PROC_BROWSER_TEST_P(SpokenFeedbackTest, EnableSpokenFeedback) {
+// TODO(crbug.com/630031): Flaky on ASan LSan bot.
+#if defined(ADDRESS_SANITIZER)
+#define MAYBE_EnableSpokenFeedback DISABLED_EnableSpokenFeedback
+#else
+#define MAYBE_EnableSpokenFeedback EnableSpokenFeedback
+#endif // defined(ADDRESS_SANITIZER)
+IN_PROC_BROWSER_TEST_P(SpokenFeedbackTest, MAYBE_EnableSpokenFeedback) {
EnableChromeVox();
}
« 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