Ignore gid0 in test results

This commit is contained in:
Behdad Esfahbod 2012-10-29 19:42:19 -07:00
parent bc513add79
commit 911ed09698
1 changed files with 1 additions and 0 deletions

View File

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