X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fmatita%2Ftests%2FTPTP%2Ftry.sh;h=06d85bd6fc2cce0df209d997f6eb8847c880f3fd;hb=605599ac2037b3632d8c35c7cbc8dda89e04c1bd;hp=0e494d59e626bd993f3b36ab72a24b833eb4f00f;hpb=3776849e95cda45b5653419cbf173605d51731ee;p=helm.git diff --git a/helm/software/matita/tests/TPTP/try.sh b/helm/software/matita/tests/TPTP/try.sh index 0e494d59e..06d85bd6f 100755 --- a/helm/software/matita/tests/TPTP/try.sh +++ b/helm/software/matita/tests/TPTP/try.sh @@ -1,5 +1,8 @@ #!/bin/sh +MATITAC=../../matitac.opt +#MATITAC=../../matitac + if [ -z "$1" ]; then TODO=Unsatisfiable/[A-Z]*.ma else @@ -12,7 +15,7 @@ i=1 for X in $TODO; do echo -n "$X ... " LOGNAME=logs/log.`basename $X` - ../../matitac.opt -nodb $X | gzip -9 > $LOGNAME 2>&1 + $MATITAC -nodb $X > $LOGNAME 2>&1 RATING=`grep "Rating" $X | sed 's/v.*//' | sed 's/(\*//'` if [ `grep "Found a proof" $LOGNAME | wc -l` -gt 0 ]; then TIME=`grep "TIME NEEDED" $LOGNAME` @@ -21,4 +24,5 @@ for X in $TODO; do echo FAIL $RATING $i fi i=`expr $i + 1` + gzip -f $LOGNAME done