[test] Fix record-test to use gids not glyph-names

as those might not match what FontTools think of the glyphs if font
does NOT have glyph names.
This commit is contained in:
Behdad Esfahbod 2018-06-04 15:38:05 -07:00
parent 58400a2ad8
commit 3e494caae3
1 changed files with 9 additions and 2 deletions

View File

@ -46,15 +46,22 @@ if test $? != 0; then
echo "hb-shape failed." >&2
exit 2
fi
glyph_names=`echo "$text" | $hb_shape $options --no-clusters --no-positions "$fontfile" | sed 's/[][]//g; s/|/,/g'`
glyph_ids=`echo "$text" | $hb_shape $options --no-glyph-names --no-clusters --no-positions "$fontfile" | sed 's/[][]//g; s/|/,/g'`
cp "$fontfile" "$dir/font.ttf"
echo fonttools subset \
--glyph-names \
--no-hinting \
--layout-features='*' \
"$dir/font.ttf" \
--gids="$glyph_ids" \
--text="$text"
fonttools subset \
--glyph-names \
--no-hinting \
--layout-features='*' \
"$dir/font.ttf" \
--glyphs="$glyph_names" \
--gids="$glyph_ids" \
--text="$text"
if ! test -s "$dir/font.subset.ttf"; then
echo "Subsetter didn't produce nonempty subset font in $dir/font.subset.ttf" >&2