1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
#!/bin/sh
TOOLDIR=../../tools/src
TOOL=
FORMAT_TOOL=
COMPARE_TOOL=
if [ "$1" = '--python' ]; then
TOOL="python3 ./hfst-head.py"
FORMAT_TOOL="python3 ./hfst-format.py"
COMPARE_TOOL="python3 ./hfst-compare.py"
else
TOOL=$TOOLDIR/hfst-head
FORMAT_TOOL=$TOOLDIR/hfst-format
COMPARE_TOOL=$TOOLDIR/hfst-compare
for tool in $TOOL $FORMAT_TOOL $COMPARE_TOOL; do
if ! test -x $tool; then
exit 77;
fi
done
fi
for i in "" .sfst .ofst .foma; do
if ((test -z "$i") || $FORMAT_TOOL --list-formats | grep $i > /dev/null); then
if test -f cat2dog$i -a -f dog2cat$i ; then
if ! cat cat2dog$i dog2cat$i | $TOOL -n 1 > test ; then
exit 1
fi
if ! $COMPARE_TOOL -s test cat2dog$i ; then
exit 1
fi
rm test;
if ! cat cat2dog$i dog2cat$i | $TOOL -n -1 > test ; then
exit 1
fi
if ! $COMPARE_TOOL -s test cat2dog$i ; then
exit 1
fi
rm test;
fi
fi
done
|