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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
#!/bin/sh
TOOLDIR=../../tools/src
CALCULATE_TOOL=
FORMAT_TOOL=
COMPARE_TOO=
if [ "$1" = '--python' ]; then
CALCULATE_TOOL="python3 ./hfst-calculate.py"
FORMAT_TOOL="python3 ./hfst-format.py"
COMPARE_TOOL="python3 ./hfst-compare.py"
else
CALCULATE_TOOL=$TOOLDIR/hfst-calculate
FORMAT_TOOL=$TOOLDIR/hfst-format
COMPARE_TOOL=$TOOLDIR/hfst-compare
for tool in $CALCULATE_TOOL $FORMAT_TOOL $COMPARE_TOOL; do
if ! test -x $tool; then
exit 77;
fi
done
fi
for i in "" .sfst .ofst .foma; do
FFLAG=
case $i in
.sfst)
FFLAG="-f sfst"
if ! ($FORMAT_TOOL --list-formats | grep "sfst" > /dev/null) ; then
continue;
fi;;
.ofst)
FFLAG="-f openfst-tropical"
if ! ($FORMAT_TOOL --list-formats | grep "openfst-tropical" > /dev/null) ; then
continue;
fi;;
.foma)
FFLAG="-f foma"
if ! ($FORMAT_TOOL --list-formats | grep "foma" > /dev/null) ; then
continue;
fi;;
*)
FFLAG=;;
esac
if test -f 4toINFcats$i ; then
if ! echo "catcatcat(cat)+" | $CALCULATE_TOOL $FFLAG > test ; then
exit 1
fi
if ! $COMPARE_TOOL -s 4toINFcats$i test ; then
exit 1
fi
rm test
fi
if test -f cat2dog$i ; then
if ! echo "{cat}:{dog}" | $CALCULATE_TOOL $FFLAG > test ; then
exit 1
fi
if ! $COMPARE_TOOL -s cat2dog$i test ; then
exit 1
fi
rm test
fi
done
|