restore gvar/MVAR/HVAR tables in subset tests

This commit is contained in:
Michiharu Ariza 2019-06-05 14:51:04 -07:00
parent 8f8e8a8479
commit 66361c72f6
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ def generate_expected_output(input_file, unicodes, profile_flags, output_path):
"--name-languages=*",
"--name-legacy",
"--layout-features=*",
"--drop-tables+=DSIG,GPOS,GSUB,GDEF,gvar,avar,MVAR,HVAR",
"--drop-tables+=DSIG,GPOS,GSUB,GDEF",
"--unicodes=%s" % unicodes,
"--output-file=%s" % output_path])
args.extend(profile_flags)

View File

@ -67,7 +67,7 @@ def run_test (test, should_check_ots):
"--font-file=" + test.font_path,
"--output-file=" + out_file,
"--unicodes=%s" % test.unicodes (),
"--drop-tables+=DSIG,GPOS,GSUB,GDEF,gvar,avar,MVAR,HVAR"]
"--drop-tables+=DSIG,GPOS,GSUB,GDEF"]
cli_args.extend (test.get_profile_flags ())
print (' '.join (cli_args))
_, return_code = cmd (cli_args)