[tests] Fix one test

This commit is contained in:
Behdad Esfahbod 2025-03-18 14:59:26 -06:00
parent 38889c3ad6
commit 0349359ce6
2 changed files with 11 additions and 6 deletions

View file

@ -1,3 +1,3 @@
@font-funcs=ot,ft # hb-fontations seems to infinite-loop
@font-funcs=ot
../fonts/ee39587d13b2afa5499cc79e45780aa79293bbd4.ttf;--show-extents;U+1F42F;[gid1=0+2963<0,2179,2963,-2789>]
../fonts/fcbaa518d3cce441ed37ae3b1fed6a19e9b54efd.ttf;--show-extents;U+1F600;[gid4=0+2550<0,1898,2555,-2405>]

View file

@ -255,20 +255,25 @@ for filename in args:
passes += 1
continue
final_glyphs = glyphs
final_glyphs_expected = glyphs_expected
if glyphs != glyphs_expected and glyphs.find("gid") != -1:
if not no_glyph_names_process:
no_glyph_names_process = open_shape_batch_process()
cmd2 = [fontfile] + ["--glyphs", "--no-glyph-names", glyphs]
glyphs = shape_cmd(cmd2, no_glyph_names_process).strip()
final_glyphs = shape_cmd(cmd2, no_glyph_names_process).strip()
cmd2 = [fontfile] + ["--glyphs", "--no-glyph-names", glyphs_expected]
glyphs_expected = shape_cmd(cmd2, no_glyph_names_process).strip()
final_glyphs_expected = shape_cmd(cmd2, no_glyph_names_process).strip()
if glyphs != glyphs_expected:
# If the removal of glyph_ids failed, fail the test.
# https://github.com/harfbuzz/harfbuzz/issues/5169
if not final_glyphs_expected or final_glyphs != final_glyphs_expected:
print(hb_shape + " " + " ".join(cmd), file=sys.stderr)
print("Actual: " + glyphs, file=sys.stderr)
print("Expected: " + glyphs_expected, file=sys.stderr)
print("Actual: " + final_glyphs, file=sys.stderr)
print("Expected: " + final_glyphs_expected, file=sys.stderr)
fails += 1
else:
passes += 1