mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 13:35:06 +00:00
[test-shape] Assume ot shaper is default
This commit is contained in:
parent
0d5795c0a5
commit
f16196a00e
1 changed files with 5 additions and 5 deletions
|
@ -100,11 +100,6 @@ for filename in args:
|
|||
cwd = os.path.dirname(filename)
|
||||
fontfile = os.path.normpath(os.path.join(cwd, fontfile))
|
||||
|
||||
extra_options = ["--shaper=ot"]
|
||||
if glyphs_expected != "*":
|
||||
extra_options.append("--verify")
|
||||
extra_options.append("--unsafe-to-concat")
|
||||
|
||||
if comment:
|
||||
print('# %s "%s" --unicodes %s' % (hb_shape, fontfile, unicodes))
|
||||
continue
|
||||
|
@ -137,6 +132,11 @@ for filename in args:
|
|||
"shaper=%s face_loader=%s font_funcs=%s" % (shaper, face_loader, font_funcs)
|
||||
)
|
||||
|
||||
extra_options = []
|
||||
if glyphs_expected != "*":
|
||||
extra_options.append("--verify")
|
||||
extra_options.append("--unsafe-to-concat")
|
||||
|
||||
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