From 911ed096980630fd4a37bf2024036daae13a6056 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Mon, 29 Oct 2012 19:42:19 -0700 Subject: [PATCH] Ignore gid0 in test results --- test/shaping/hb_test_tools.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/shaping/hb_test_tools.py b/test/shaping/hb_test_tools.py index 0b1ec00e..6139ec10 100644 --- a/test/shaping/hb_test_tools.py +++ b/test/shaping/hb_test_tools.py @@ -299,6 +299,7 @@ class DiffHelpers: if any (l.find("uni25CC") >= 0 for l in lines if l[0] == '+'): return True if any (l.find("dottedcircle") >= 0 for l in lines if l[0] == '+'): return True if any (l.find("glyph0") >= 0 for l in lines if l[0] == '+'): return True + if any (l.find("gid0") >= 0 for l in lines if l[0] == '+'): return True if any (l.find("notdef") >= 0 for l in lines if l[0] == '+'): return True return all (l[0] == ' ' for l in lines) -- GitLab