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

Unified Diff: content/browser/accessibility/cross_platform_accessibility_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
Index: content/browser/accessibility/cross_platform_accessibility_browsertest.cc
===================================================================
--- content/browser/accessibility/cross_platform_accessibility_browsertest.cc (revision 185913)
+++ content/browser/accessibility/cross_platform_accessibility_browsertest.cc (working copy)
@@ -23,6 +23,13 @@
#include "ui/base/win/atl_module.h"
#endif
+// TODO(dmazzoni): Disabled accessibility tests on Win64. crbug.com/179717
+#if defined(OS_WIN) && defined(ARCH_CPU_X86_64)
+#define MAYBE_TableSpan DISABLED_TableSpan
+#else
+#define MAYBE_TableSpan TableSpan
+#endif
+
namespace content {
class CrossPlatformAccessibilityBrowserTest : public ContentBrowserTest {
@@ -376,7 +383,7 @@
}
IN_PROC_BROWSER_TEST_F(CrossPlatformAccessibilityBrowserTest,
- TableSpan) {
+ MAYBE_TableSpan) {
// +---+---+---+
// | 1 | 2 |
// +---+---+---+

Powered by Google App Engine
This is Rietveld 408576698