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
|
#!/bin/bash
testHelper=../testScripts/testhelper
frobby=../../bin/frobby
test="$1"
shift
inputFile="$test.test"
if [ "$1" = "_full" ]; then
shift;
$testHelper dimension $test.test $test.dim $* -useSlice
if [ $? != 0 ]; then exit 1; fi
$frobby transform < $test.test -radical -minimize > /tmp/frobbyTestTmp 2> /dev/null
$testHelper dimension /tmp/frobbyTestTmp $test.dim $* -squareFreeAndMinimal
if [ $? != 0 ]; then rm /tmp/frobbyTestTmp; exit 1; fi
$testHelper dimension /tmp/frobbyTestTmp $test.dim $* -useSlice -squareFreeAndMinimal
if [ $? != 0 ]; then rm /tmp/frobbyTestTmp; exit 1; fi
rm /tmp/frobbyTestTmp;
fi
$testHelper dimension $test.test $test.dim $*
if [ $? != 0 ]; then exit 1; fi
|