[subset] Update generate-expected-outputs to drop BASE.

This matches the behaviour of the test runner.
This commit is contained in:
Garret Rieger 2024-03-27 18:26:09 +00:00
parent ec46c4c2e6
commit 15a05b2432

View file

@ -46,7 +46,7 @@ def generate_expected_output(input_file, unicodes, profile_flags, instance_flags
args = ["fonttools", "subset", input_path]
if instance_flags:
args.extend(["--recalc-bounds", "--recalc-average-width"])
args.extend(["--drop-tables+=DSIG",
args.extend(["--drop-tables+=DSIG,BASE",
"--drop-tables-=sbix",
"--no-harfbuzz-repacker", # disable harfbuzz repacker so we aren't comparing to ourself.
"--output-file=%s" % fonttools_path])
@ -71,7 +71,7 @@ def generate_expected_output(input_file, unicodes, profile_flags, instance_flags
hb_subset,
"--font-file=" + input_file,
"--output-file=" + harfbuzz_path,
"--drop-tables+=DSIG",
"--drop-tables+=DSIG,BASE",
"--drop-tables-=sbix"]
if unicodes != "":
args.extend(["--unicodes=%s" % unicodes,])