[tests] Make record-test.sh work with .otf files

It hard-codes the file extension, but fonttools sunset will use .otf for
CFF fonts, so hard-code the output file from subset as well.
This commit is contained in:
Khaled Hosny 2021-06-23 18:16:56 +02:00 committed by Behdad Esfahbod
parent cc9bb29491
commit 71a6296620
1 changed files with 6 additions and 4 deletions

View File

@ -65,16 +65,18 @@ echo fonttools subset \
--glyph-names \
--no-hinting \
--layout-features='*' \
"$dir/font.ttf" \
--gids="$glyph_ids" \
--text="$text"
--text="$text" \
--output-file="$dir/font.subset.ttf" \
"$dir/font.ttf"
fonttools subset \
--glyph-names \
--no-hinting \
--layout-features='*' \
"$dir/font.ttf" \
--gids="$glyph_ids" \
--text="$text"
--text="$text" \
--output-file="$dir/font.subset.ttf" \
"$dir/font.ttf"
if ! test -s "$dir/font.subset.ttf"; then
echo "Subsetter didn't produce nonempty subset font in $dir/font.subset.ttf" >&2
exit 2