Annotation of gforth/testall, revision 1.18

1.17      anton       1: #! /bin/bash
1.1       anton       2: #test dist on all MACHINES given in MACHINES
                      3: #usage: MACHINES="..." testall dirs/gforth-version.tar.gz
1.9       anton       4: if test $# = 0; then
                      5:   echo "usage: `basename $0` gforth-xxx.tar.gz"
                      6:   exit 1
                      7: fi
1.10      anton       8: test "x$MACHINES" != x || 
1.18    ! anton       9: MACHINES="a5 a7 b2 b3 c1 c4 c6 c7 c8 iyonix mips ppc64 t1000"
1.10      anton      10: SSH_PROTOCOL=-oProtocol=1,2
1.1       anton      11: for i in $MACHINES
                     12: do
1.18    ! anton      13:   if false; then
1.15      anton      14:     echo; echo $i
                     15:     /usr/bin/ssh $SSH_PROTOCOL -x $i echo ok
                     16:   else
1.10      anton      17:     ( ssh $SSH_PROTOCOL -q -x $i "test -d xxxgforthtest||mkdir xxxgforthtest; cd xxxgforthtest; test -d $i||mkdir $i; rm -rf $i/*" >$i 2>&1; \
                     18:       scp $SSH_PROTOCOL -p -q $1 ../testdist $i:xxxgforthtest/$i >>$i 2>&1; \
                     19:       ssh $SSH_PROTOCOL -q -x $i "cd xxxgforthtest/$i; ./testdist `basename $1`" >>$i 2>&1; \
1.18    ! anton      20:       echo "$i done" "`tail -1 $i`" `grep "checking host system type..." a7|sed 's/checking host system type... //'` `grep "^gcc.*ok" $i`
        !            21:       grep -A 2 "sieve bubble matrix  fib" $i) &
1.15      anton      22:   fi
1.1       anton      23: done
                     24: wait
                     25: echo all done

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