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
This commit is contained in:
djsollen@google.com 2013-09-19 12:55:26 +00:00
parent 1f584ed3f4
commit 2397c06ffb

View File

@ -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"