2014-07-09 23:07:06 +02:00
|
|
|
#!/bin/sh
|
2013-10-14 18:47:51 +02:00
|
|
|
|
|
|
|
test "x$srcdir" = x && srcdir=.
|
|
|
|
test "x$builddir" = x && builddir=.
|
|
|
|
test "x$top_builddir" = x && top_builddir=../..
|
|
|
|
|
2013-10-28 20:44:03 +01:00
|
|
|
hb_shape=$top_builddir/util/hb-shape$EXEEXT
|
2013-10-14 18:47:51 +02:00
|
|
|
|
|
|
|
fails=0
|
|
|
|
|
|
|
|
if test $# = 0; then
|
|
|
|
set /dev/stdin
|
|
|
|
fi
|
|
|
|
|
|
|
|
IFS=:
|
|
|
|
for f in "$@"; do
|
|
|
|
echo "Running tests in $f"
|
|
|
|
while read fontfile unicodes glyphs_expected; do
|
|
|
|
echo "Testing $fontfile:$unicodes"
|
|
|
|
glyphs=`$srcdir/hb-unicode-encode "$unicodes" | $hb_shape "$srcdir/$fontfile"`
|
|
|
|
if ! test "x$glyphs" = "x$glyphs_expected"; then
|
|
|
|
echo "Actual: $glyphs" >&2
|
|
|
|
echo "Expected: $glyphs_expected" >&2
|
2014-07-09 23:07:06 +02:00
|
|
|
fails=$((fails+1))
|
2013-10-14 18:47:51 +02:00
|
|
|
fi
|
|
|
|
done < "$f"
|
|
|
|
done
|
|
|
|
|
|
|
|
if test $fails != 0; then
|
|
|
|
echo "$fails tests failed."
|
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
echo "All tests passed."
|
|
|
|
fi
|