From 44eedf82702e39b19c44dd9ecc19c047519b4dea Mon Sep 17 00:00:00 2001 From: "reed@google.com" Date: Thu, 23 Feb 2012 15:45:17 +0000 Subject: [PATCH] don't require tableCount>0 since some platform fonts may not support that git-svn-id: http://skia.googlecode.com/svn/trunk@3238 2bbb7eff-a529-9590-31e7-b0007b416f81 --- tests/FontHostTest.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/FontHostTest.cpp b/tests/FontHostTest.cpp index 9bb19c9..2b83658 100644 --- a/tests/FontHostTest.cpp +++ b/tests/FontHostTest.cpp @@ -28,7 +28,6 @@ static void test_tables(skiatest::Reporter* reporter, SkTypeface* face) { SkFontID fontID = face->uniqueID(); int count = SkFontHost::CountTables(fontID); - REPORTER_ASSERT(reporter, count > 0); SkAutoTMalloc storage(count); SkFontTableTag* tags = storage.get(); -- 2.7.4