File:  [gforth] / gforth / testall
Revision 1.18: download - view: text, annotated - select for diffs
Sat Oct 25 22:30:06 2008 UTC (15 years, 5 months ago) by anton
Branches: MAIN
CVS tags: HEAD
Fixed a few more builddir and other issues
Improved testall and testdist (only partially tested)

    1: #! /bin/bash
    2: #test dist on all MACHINES given in MACHINES
    3: #usage: MACHINES="..." testall dirs/gforth-version.tar.gz
    4: if test $# = 0; then
    5:   echo "usage: `basename $0` gforth-xxx.tar.gz"
    6:   exit 1
    7: fi
    8: test "x$MACHINES" != x || 
    9: MACHINES="a5 a7 b2 b3 c1 c4 c6 c7 c8 iyonix mips ppc64 t1000"
   10: SSH_PROTOCOL=-oProtocol=1,2
   11: for i in $MACHINES
   12: do
   13:   if false; then
   14:     echo; echo $i
   15:     /usr/bin/ssh $SSH_PROTOCOL -x $i echo ok
   16:   else
   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; \
   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) &
   22:   fi
   23: done
   24: wait
   25: echo all done

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