Annotation of gforth/testall, revision 1.6

1.1       anton       1: #! /usr/local/bin/bash
                      2: #test dist on all MACHINES given in MACHINES
                      3: #usage: MACHINES="..." testall dirs/gforth-version.tar.gz
1.6     ! anton       4: test "x$MACHINES" != x || MACHINES="jupiter pcs d0 mips aertl@fpr.zserv.tuwien.ac.at calis a5 w4.infosys.tuwien.ac.at samhain.ifs.tuwien.ac.at"
        !             5: #taken out: hpws03.infosys.tuwien.ac.at a8
1.1       anton       6: for i in $MACHINES
                      7: do
                      8:        ( ssh $i "test -d xxxgforthtest||mkdir xxxgforthtest; cd xxxgforthtest; test -d $i||mkdir $i; rm -rf $i/*"; \
                      9:         scp -pq $1 testdist $i:xxxgforthtest/$i; \
                     10:         ssh $i "cd xxxgforthtest/$i; ./testdist `basename $1`" >$i 2>&1; \
1.4       anton      11:         echo "$i done" `tail -1 $i`) &
1.1       anton      12: done
                     13: wait
                     14: echo all done

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