mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-06 14:05:05 +00:00
[test/shape] Report shaper, face-loader, font-funcs
This commit is contained in:
parent
aacc667e51
commit
0d5795c0a5
1 changed files with 9 additions and 0 deletions
|
@ -110,6 +110,9 @@ for filename in args:
|
|||
continue
|
||||
|
||||
skip_test = False
|
||||
shaper = ""
|
||||
face_loader = ""
|
||||
font_funcs = ""
|
||||
for what in ["--shaper", "--face-loader", "--font-funcs"]:
|
||||
it = iter(options)
|
||||
for option in it:
|
||||
|
@ -123,11 +126,17 @@ for filename in args:
|
|||
print("Skipping test with ${what}=${backend}.")
|
||||
skip_test = True
|
||||
break
|
||||
what = what[2:].replace("-", "_")
|
||||
globals()[what] = backend
|
||||
if skip_test:
|
||||
break
|
||||
if skip_test:
|
||||
continue
|
||||
|
||||
print(
|
||||
"shaper=%s face_loader=%s font_funcs=%s" % (shaper, face_loader, font_funcs)
|
||||
)
|
||||
|
||||
if "--font-funcs=ot" in options or not have_freetype:
|
||||
glyphs1 = shape_cmd(
|
||||
[fontfile, "--font-funcs=ot"]
|
||||
|
|
Loading…
Add table
Reference in a new issue