aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorGravatar djsollen@google.com <djsollen@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-09-19 12:55:26 +0000
committerGravatar djsollen@google.com <djsollen@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-09-19 12:55:26 +0000
commit2397c06ffb10e0cbea4ae8aa4efe2f7fae3dc6e6 (patch)
treef91ce8f734b7bc1aecf3a57d974676dae1bedb65 /tests
parent1f584ed3f43037e85bae3019d48e793ae28ebbd5 (diff)
Disable broken test on Android
R=caryclark@google.com Review URL: https://codereview.chromium.org/23484057 git-svn-id: http://skia.googlecode.com/svn/trunk@11380 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'tests')
-rw-r--r--tests/FontMgrTest.cpp3
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"