diff options
Diffstat (limited to 'tests/FontMgrTest.cpp')
-rw-r--r-- | tests/FontMgrTest.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/FontMgrTest.cpp b/tests/FontMgrTest.cpp index af1f03a8e1..8a9e125919 100644 --- a/tests/FontMgrTest.cpp +++ b/tests/FontMgrTest.cpp @@ -70,7 +70,10 @@ DEFINE_bool(verboseFontMgr, false, "run verbose fontmgr tests."); static void TestFontMgr(skiatest::Reporter* reporter) { test_fontiter(reporter, FLAGS_verboseFontMgr); +// The badnames test fails on Android because "sans" is not a valid alias +#if !defined(SK_BUILD_FOR_ANDROID) test_badnames(reporter); +#endif } #include "TestClassDef.h" |