aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/FontHostTest.cpp
diff options
context:
space:
mode:
authorGravatar bungeman@google.com <bungeman@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-01-10 19:40:56 +0000
committerGravatar bungeman@google.com <bungeman@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-01-10 19:40:56 +0000
commit2dc54c94f067f6e589fc2aff1b2f5800766de195 (patch)
tree705c9846fbacdab6c16c4fc6cd85ac1d391d3550 /tests/FontHostTest.cpp
parentf85251c74d214ffc7dafa6d9fe23c1be0a2f3aa6 (diff)
Remove printfs from FontHostTest when font is not sfnt.
BUG=skia:2009 R=caryclark@google.com Review URL: https://codereview.chromium.org/134303002 git-svn-id: http://skia.googlecode.com/svn/trunk@13027 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'tests/FontHostTest.cpp')
-rw-r--r--tests/FontHostTest.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/FontHostTest.cpp b/tests/FontHostTest.cpp
index 500f8598de..ba3a582fcb 100644
--- a/tests/FontHostTest.cpp
+++ b/tests/FontHostTest.cpp
@@ -46,9 +46,6 @@ static void test_unitsPerEm(skiatest::Reporter* reporter, SkTypeface* face) {
if (tableUPEM >= 0) {
REPORTER_ASSERT(reporter, tableUPEM == nativeUPEM);
- } else {
- // not sure this is a bug, but lets report it for now as info.
- SkDebugf("--- typeface returned 0 upem [%X]\n", face->uniqueID());
}
}
@@ -68,9 +65,6 @@ static void test_countGlyphs(skiatest::Reporter* reporter, SkTypeface* face) {
if (tableGlyphs >= 0) {
REPORTER_ASSERT(reporter, tableGlyphs == nativeGlyphs);
- } else {
- // not sure this is a bug, but lets report it for now as info.
- SkDebugf("--- typeface returned 0 glyphs [%X]\n", face->uniqueID());
}
}