[tests] Fix for multiple options in test runner scripts
This commit is contained in:
parent
ebd7431f82
commit
17c8317017
|
@ -18,10 +18,9 @@ if test $# = 0; then
|
||||||
set /dev/stdin
|
set /dev/stdin
|
||||||
fi
|
fi
|
||||||
|
|
||||||
IFS=:
|
|
||||||
for f in "$@"; do
|
for f in "$@"; do
|
||||||
$reference || echo "Running tests in $f"
|
$reference || echo "Running tests in $f"
|
||||||
while read fontfile options unicodes glyphs_expected; do
|
while IFS=: read fontfile options unicodes glyphs_expected; do
|
||||||
if echo "$fontfile" | grep -q '^#'; then
|
if echo "$fontfile" | grep -q '^#'; then
|
||||||
$reference || echo "Skipping $fontfile:$unicodes"
|
$reference || echo "Skipping $fontfile:$unicodes"
|
||||||
continue
|
continue
|
||||||
|
|
Loading…
Reference in New Issue