--- gforth/testall 1999/06/18 15:19:13 1.3 +++ gforth/testall 2008/10/25 22:48:20 1.19 @@ -1,13 +1,25 @@ -#! /usr/local/bin/bash +#! /bin/bash #test dist on all MACHINES given in MACHINES #usage: MACHINES="..." testall dirs/gforth-version.tar.gz -test "x$MACHINES" != x || MACHINES="pcs d0 mips calis a5 w4.infosys.tuwien.ac.at hpws03.infosys.tuwien.ac.at aertl@fpr.zserv.tuwien.ac.at samhain.unix.cslab.tuwien.ac.at" +if test $# = 0; then + echo "usage: `basename $0` gforth-xxx.tar.gz" + exit 1 +fi +test "x$MACHINES" != x || +MACHINES="a5 a7 b2 b3 c1 c4 c6 c7 c8 iyonix mips ppc64 t1000" +SSH_PROTOCOL=-oProtocol=1,2 for i in $MACHINES do - ( ssh $i "test -d xxxgforthtest||mkdir xxxgforthtest; cd xxxgforthtest; test -d $i||mkdir $i; rm -rf $i/*"; \ - scp -pq $1 testdist $i:xxxgforthtest/$i; \ - ssh $i "cd xxxgforthtest/$i; ./testdist `basename $1`" >$i 2>&1; \ - echo "$i done" ) & + if false; then + 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; \ + 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; \ + echo "$i done" "`tail -1 $i`" `grep "checking host system type..." $i|sed 's/checking host system type... //'` `grep "^gcc.*ok" $i` + grep -A 2 "sieve bubble matrix fib" $i) & + fi done wait echo all done