Diff for /gforth/testall between versions 1.10 and 1.20

version 1.10, 2003/01/30 00:07:46 version 1.20, 2008/10/27 21:00:17
Line 1 Line 1
 #! /usr/local/bin/bash  #! /bin/bash
 #test dist on all MACHINES given in MACHINES  #test dist on all MACHINES given in MACHINES
 #usage: MACHINES="..." testall dirs/gforth-version.tar.gz  #usage: MACHINES="..." testall dirs/gforth-version.tar.gz
 if test $# = 0; then  if test $# = 0; then
Line 6  if test $# = 0; then Line 6  if test $# = 0; then
   exit 1    exit 1
 fi  fi
 test "x$MACHINES" != x ||   test "x$MACHINES" != x || 
 MACHINES="pcs d0 mips aertl@fpr.zserv.tuwien.ac.at \  MACHINES="a5 a7 b2 b3 c1 c4 c6 c7 c8 iyonix mips ppc64 t1000"
 b1 b2 b3 b4 \  
 samhain.ifs.tuwien.ac.at calis aertl@mail.zserv.tuwien.ac.at \  
 rlwinm.ifs.tuwien.ac.at fmadd.ifs.tuwien.ac.at lfsux.ifs.tuwien.ac.at \  
 s4addq.ifs.tuwien.ac.at \  
 128.130.204.24 128.130.204.25 128.130.204.26 \  
 128.130.173.38"  
 #taken out: hpws03.infosys.tuwien.ac.at aertl@fbma.tuwien.ac.at w4.infosys.tuwien.ac.at jupiter aertl@stat.zserv.tuwien.ac.at  c2.complang.tuwien.ac.at  
 SSH_PROTOCOL=-oProtocol=1,2  SSH_PROTOCOL=-oProtocol=1,2
 for i in $MACHINES  for i in $MACHINES
 do  do
 #    echo; echo $i    if false; then
 #    /usr/bin/ssh $SSH_PROTOCOL -x $i echo ok      echo; echo $i
       /usr/bin/ssh $SSH_PROTOCOL -x $i echo ok
     else
     ( ssh $SSH_PROTOCOL -q -x $i "test -d xxxgforthtest||mkdir xxxgforthtest; cd xxxgforthtest; test -d $i||mkdir $i; rm -rf $i/*" >$i 2>&1; \      ( ssh $SSH_PROTOCOL -q -x $i "test -d xxxgforthtest||mkdir xxxgforthtest; cd xxxgforthtest; test -d $i||mkdir $i; rm -rf $i/*" >$i 2>&1; \
       scp $SSH_PROTOCOL -p -q $1 ../testdist $i:xxxgforthtest/$i >>$i 2>&1; \        scp $SSH_PROTOCOL -p -q $1 ../testdist $i:xxxgforthtest/$i >>$i 2>&1; \
       ssh $SSH_PROTOCOL -q -x $i "cd xxxgforthtest/$i; ./testdist `basename $1`" >>$i 2>&1; \        ssh $SSH_PROTOCOL -q -x $i "cd xxxgforthtest/$i; ./testdist `basename $1`" >>$i 2>&1; \
       echo "$i done" `tail -1 $i`) &        echo "$i done" "`tail -1 $i`" `grep "checking host system type..." $i|sed 's/checking host system type... //'|uniq` `grep "^gcc.*ok" $i`
         grep -A 2 "sieve bubble matrix  fib" $i; echo) &
     fi
 done  done
 wait  wait
 echo all done  echo all done

Removed from v.1.10  
changed lines
  Added in v.1.20


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>