From: Enrico Tassi Date: Mon, 29 May 2006 20:41:16 +0000 (+0000) Subject: fix X-Git-Tag: make_still_working~7294 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=b93c448d6ea4c9de27b221c72891ae0345eac30d;p=helm.git fix --- diff --git a/helm/software/matita/tests/TPTP/try.sh b/helm/software/matita/tests/TPTP/try.sh index eb1c3f9d1..12fc7effe 100755 --- a/helm/software/matita/tests/TPTP/try.sh +++ b/helm/software/matita/tests/TPTP/try.sh @@ -12,11 +12,11 @@ for X in $TODO; do echo -n "$X ... " LOGNAME=logs/log.`basename $X` ../../matitac.opt $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` - RATING=`grep "Rating" $X | sed 's/v.*//' | sed 's/(\*//'` echo OK $TIME $RATING else - echo FAIL + echo FAIL $RATING fi done