File:  [gforth] / gforth / testall
Revision 1.17: download - view: text, annotated - select for diffs
Sat Oct 25 17:18:42 2008 UTC (15 years, 5 months ago) by anton
Branches: MAIN
CVS tags: HEAD
Fixed various bugs related to builddir!=srcdir
prims2x0.6.2.fs is now installed
avoid extra make for check
updated testdist and testall

#! /bin/bash
#test dist on all MACHINES given in MACHINES
#usage: MACHINES="..." testall dirs/gforth-version.tar.gz
if test $# = 0; then
  echo "usage: `basename $0` gforth-xxx.tar.gz"
  exit 1
fi
test "x$MACHINES" != x || 
MACHINES="mips a5 a7 b2 b3 c1 c4 c6 c7 c8 t1000 iyonix ppc64"
SSH_PROTOCOL=-oProtocol=1,2
for i in $MACHINES
do
  if true; 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`") &
  fi
done
wait
echo all done

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