]> matita.cs.unibo.it Git - helm.git/commitdiff
minor fixes
authorEnrico Tassi <enrico.tassi@inria.fr>
Mon, 27 Jun 2005 08:15:55 +0000 (08:15 +0000)
committerEnrico Tassi <enrico.tassi@inria.fr>
Mon, 27 Jun 2005 08:15:55 +0000 (08:15 +0000)
helm/matita/scripts/do_tests.sh
helm/matita/scripts/profile_cvs.sh

index 737ea7c5efd42de28d6359f0126f56ba96ee5068..080ff2adaf9a81908ffde12dc814ecb59ec2e996 100755 (executable)
@@ -8,6 +8,10 @@ if [ "$1" = "-no-color" ]; then
   OK="OK"
   FAIL="FAIL"
 fi
+if [ "$1" = "-twice" ]; then
+  shift
+  TWICE=1
+fi
 
 COMPILER=$1
 shift
@@ -18,7 +22,11 @@ TODO="$@"
 if [ -z "$COMPILER" -o -z "$LOGFILE" -o -z "$TODO" ]; then
   echo
   echo "usage: "
-  echo "  do_tests.sh [-no-color] ./compiler logfile tests.ma ..."
+  echo "  do_tests.sh [-no-color] [-twice] ./compiler logfile tests.ma ..."
+  echo
+  echo "options:  "
+  echo "  -no-color Do not use vt100 colors"
+  echo "  -twice    Run each test twice but show only the second run times"
   echo
   echo "The value of the DO_TESTS_EXTRA evironment variable"
   echo "will be appended to each line."
@@ -29,6 +37,9 @@ TMP=.__temp.txt
 
 for T in $TODO; do
   echo -en "$COMPILER\t$T\t"
+  if [ "$TWICE" = "1" ]; then
+    $COMPILER $T 1>/dev/null 2>/dev/null
+  fi
   /usr/bin/time --quiet -o $TMP -f "%E\t%U\t%S" $COMPILER $T >> $LOGFILE 2>&1
   if [ $? = 0 ]; then
     echo -e "$OK\t`cat $TMP`\t$DO_TESTS_EXTRA"
index 384f64260cc4f4d0d9b0c0c09abc0c022edc8423..c3f19c03f56fdb8413d24ff34090baea67212474 100755 (executable)
@@ -8,8 +8,8 @@ function testit {
   LOGTOOPT=/dev/null
   LOGTOBYTE=/dev/null
   export DO_TESTS_EXTRA="$MARK\t$@"
-  scripts/do_tests.sh -no-color ./matitac.opt $LOGTOOPT tests/*.ma
-  scripts/do_tests.sh -no-color ./matitac $LOGTOBYTE tests/*.ma
+  scripts/do_tests.sh -no-color -twice ./matitac.opt $LOGTOOPT tests/*.ma
+  scripts/do_tests.sh -no-color -twice ./matitac $LOGTOBYTE tests/*.ma
 }
 
 function compile {
@@ -31,10 +31,8 @@ function run_tests {
   OLD=$PWD
   cd $1
   export OCAMLRUNPARAM='o=1000000'
-  testit "gc-off" 1>/dev/null 2>/dev/null
   testit "gc-off"
   export OCAMLRUNPARAM=''
-  testit "gc-on" 1>/dev/null 2>/dev/null
   testit "gc-on"
   cd $OLD
 }
@@ -46,7 +44,7 @@ cd $TMPDIRNAME
 cvs -d $CVSROOT co helm/ocaml 1>/dev/null 2>/dev/null
 cvs -d $CVSROOT co helm/matita 1>/dev/null 2>/dev/null
 compile $PWD/helm/ocaml $PWD/helm/matita
-run_tests $PWD/helm/matita > LOG
+run_tests $PWD/helm/matita > LOG 2>/dev/null
 cat LOG | awk -f $PWD/helm/matita/scripts/insert.awk > INSERT.sql
 cat INSERT.sql | mysql -u helm -h mowgli.cs.unibo.it matita
 cd $OLD