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

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

Issue 12378095: Disable some accessibility tests on Win64 build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 10 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 | « content/browser/accessibility/cross_platform_accessibility_browsertest.cc ('k') | 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
===================================================================
--- content/browser/accessibility/dump_accessibility_tree_browsertest.cc (revision 185913)
+++ content/browser/accessibility/dump_accessibility_tree_browsertest.cc (working copy)
@@ -26,6 +26,13 @@
#include "content/test/content_browser_test_utils.h"
#include "testing/gtest/include/gtest/gtest.h"
+// TODO(dmazzoni): Disabled accessibility tests on Win64. crbug.com/179717
+#if defined(OS_WIN) && defined(ARCH_CPU_X86_64)
+#define MAYBE(x) DISABLED_##x
+#else
+#define MAYBE(x) x
+#endif
+
namespace content {
namespace {
@@ -264,7 +271,8 @@
RunTest(FILE_PATH_LITERAL("aria-invalid.html"));
}
-IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaLevel) {
+IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
+ MAYBE(AccessibilityAriaLevel)) {
RunTest(FILE_PATH_LITERAL("aria-level.html"));
}
@@ -365,7 +373,7 @@
}
IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
- AccessibilityIframeCoordinates) {
+ MAYBE(AccessibilityIframeCoordinates)) {
RunTest(FILE_PATH_LITERAL("iframe-coordinates.html"));
}
« no previous file with comments | « content/browser/accessibility/cross_platform_accessibility_browsertest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698