[subset] Add subset integration tests using the full roboto font.

This commit is contained in:
Garret Rieger 2018-02-26 18:51:56 -08:00
parent 33f4381314
commit d31ace3274
6 changed files with 19 additions and 4 deletions

View File

@ -1,5 +1,6 @@
TESTS = \
tests/basics.tests \
tests/full-font.tests \
$(NULL)
XFAIL_TESTS = \

Binary file not shown.

View File

@ -0,0 +1,10 @@
FONTS:
Roboto-Regular.ttf
PROFILES:
default.txt
SUBSETS:
abc
Ǽ!A bc

View File

@ -17,10 +17,14 @@ def usage():
def generate_expected_output(input_file, unicodes, output_path):
check_call(["fonttools", "subset",
input_file,
"--drop-tables+=DSIG,GPOS,GSUB,GDEF",
"--unicodes=%s" % unicodes,
"--output-file=%s" % output_path])
input_file,
"--notdef-outline",
"--name-IDs=*",
"--name-languages=*",
"--name-legacy",
"--drop-tables+=DSIG,GPOS,GSUB,GDEF",
"--unicodes=%s" % unicodes,
"--output-file=%s" % output_path])
args = sys.argv[1:]