Diff for /gforth/testdist between versions 1.5 and 1.8

version 1.5, 1998/12/21 22:52:30 version 1.8, 2001/05/01 14:35:00
Line 4 Line 4
 #gforth-version.tar.gz must be in the working directory  #gforth-version.tar.gz must be in the working directory
 MACHINE=`hostname`  MACHINE=`hostname`
 GFORTH=`basename $1 .tar.gz`  GFORTH=`basename $1 .tar.gz`
 DIR=$PWD  DIR=`pwd`
   chmod -R +w $GFORTH
 rm -rf $GFORTH  rm -rf $GFORTH
 gunzip -cd $1 | tar xf -  gunzip -cd $1 | tar xf -
 if make --version|grep -q GNU  if make --version|grep -q GNU
Line 19  else Line 20  else
         cd $GFORTH          cd $GFORTH
         ./configure --prefix=$DIR/install          ./configure --prefix=$DIR/install
 fi  fi
 make  make &&
 make check  make check &&
 #gforth locals-test.fs  #gforth locals-test.fs
 #gforth test-counted-loops.fs  #gforth test-counted-loops.fs
 make install  make install &&
 #make bench  #make bench
   chmod -R +w ../$GFORTH/vmgen-ex &&
   cd ../$GFORTH/vmgen-ex &&
   PATH=$DIR/install/bin:$PATH make check &&
   cd ..
 cd ..  cd ..
 install/bin/gforth test/tester.fs test/coretest.fs test/postpone.fs test/dbltest.fs -e bye && echo test ok  install/bin/gforth test/tester.fs test/coretest.fs test/postpone.fs test/dbltest.fs -e bye && echo test ok
 chmod -R +w $GFORTH  chmod -R +w $GFORTH

Removed from v.1.5  
changed lines
  Added in v.1.8


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