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

Unified Diff: content/browser/accessibility/dump_accessibility_tree_browsertest.cc

Issue 2797363002: Disable DumpAccessibilityTreeTest.AccessibilityAomChecked on TSAN (Closed)
Patch Set: Created 3 years, 8 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: content/browser/accessibility/dump_accessibility_tree_browsertest.cc
diff --git a/content/browser/accessibility/dump_accessibility_tree_browsertest.cc b/content/browser/accessibility/dump_accessibility_tree_browsertest.cc
index c4b47719c935d32e73dc7c799684f62538a9d86e..c6a9e1a23c17f2e0a823d9e0819553ec69aa5104 100644
--- a/content/browser/accessibility/dump_accessibility_tree_browsertest.cc
+++ b/content/browser/accessibility/dump_accessibility_tree_browsertest.cc
@@ -191,7 +191,15 @@ IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAOnclick) {
RunHtmlTest(FILE_PATH_LITERAL("a-onclick.html"));
}
-IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAomChecked) {
+
+#if defined(THREAD_SANITIZER)
+// See (crbug.com/708759).
+#define MAYBE_AccessibilityAomChecked DISABLED_AccessibilityAomChecked
+#else
+#define MAYBE_AccessibilityAomChecked AccessibilityAomChecked
+#endif
+IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
+ MAYBE_AccessibilityAomChecked) {
RunAomTest(FILE_PATH_LITERAL("aom-checked.html"));
}
« 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