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

Unified Diff: ui/gfx/font_unittest.cc

Issue 2483493002: android: Don't run failing FontTest.DeriveFont; run gfx_unittests on bots. (Closed)
Patch Set: include build_config.h more Created 4 years, 1 month 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 | « testing/buildbot/chromium.android.json ('k') | ui/gfx/geometry/quad_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/font_unittest.cc
diff --git a/ui/gfx/font_unittest.cc b/ui/gfx/font_unittest.cc
index e123d96794ea7021bf27332d8dca9d15dc436969..c74aae18f143dd6f644adb2f928bad3ebc831a26 100644
--- a/ui/gfx/font_unittest.cc
+++ b/ui/gfx/font_unittest.cc
@@ -162,7 +162,13 @@ TEST_F(FontTest, MAYBE_GetActualFontNameForTesting) {
base::ToLowerASCII(fallback_font.GetActualFontNameForTesting()));
}
-TEST_F(FontTest, DeriveFont) {
+#if defined(OS_ANDROID)
+// https://crbug.com/642010
+#define MAYBE_DeriveFont DISABLED_DeriveFont
+#else
+#define MAYBE_DeriveFont DeriveFont
+#endif
+TEST_F(FontTest, MAYBE_DeriveFont) {
Font cf("Arial", 8);
const int kSizeDelta = 2;
Font cf_underlined =
« no previous file with comments | « testing/buildbot/chromium.android.json ('k') | ui/gfx/geometry/quad_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698