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 62 63 64 65 66 67 68
|
#!/bin/sh
TOOLDIR=../../tools/src
TOOL=
FORMAT_TOOL=
COMPARE_TOOL=
if [ "$1" = '--python' ]; then
TOOL="python3 ./hfst-substitute.py"
FORMAT_TOOL="python3 ./hfst-format.py"
COMPARE_TOOL="python3 ./hfst-compare.py"
else
TOOL=$TOOLDIR/hfst-substitute
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 cat$i -a -f dog$i ; then
if ! $TOOL -s cat$i -F $srcdir/cat2dog.substitute > test ; then
exit 1
fi
if ! $COMPARE_TOOL -s test dog$i ; then
exit 1
fi
rm test
$TOOL -s cat$i -f c -t d |\
$TOOL -s -f a -t o |\
$TOOL -s -f t -t g > test
if test $? -ne 0 ; then
exit 1
fi
if ! $COMPARE_TOOL -s test dog$i ; then
exit 1
fi
fi
if test -f another_epsilon$i -a -f epsilon$i ; then
if ! $TOOL -s -i another_epsilon$i -f '@@ANOTHER_EPSILON@@' -t '@0@' > test ; then
echo "fail: could not substitute"
exit 1
fi
if ! $COMPARE_TOOL -s test epsilon$i ; then
echo "fail: test and epsilon"$i" differ"
exit 1
fi
if $TOOLDIR/hfst-summarize --verbose test 2> /dev/null | grep "sigma" | grep '@@ANOTHER_EPSILON@@' > /dev/null ; then
echo "fail: @@ANOTHER_EPSILON@@ is still in the alphabet after substitution"
exit 1
fi
rm test
fi
# Disable test until option -T works in hfst-substitute
#if test -f cat$i -a -f substituted_transducer$i -a -f substituting_transducer$i; then
# if ! $TOOLDIR/hfst-substitute -s cat$i -f 'a:a' -T $srcdir/substituting_transducer$i > test ; then
# exit 1
# fi
# if ! $COMPARE_TOOL -s test substituted_transducer$i ; then
# exit 1
# fi
# rm test
#fi
fi
done
|