Diff for /gforth/testdist between versions 1.3 and 1.5

version 1.3, 1997/03/20 14:39:53 version 1.5, 1998/12/21 22:52:30
Line 1 Line 1
   #! /bin/sh
 #tests that dist works  #tests that dist works
 #call this with gforth-$(version).tar.gz in the working directory  #usage: testdist gforth-version.tar.gz
 #use this if your make handles VPATH ok  #gforth-version.tar.gz must be in the working directory
 GFORTH=gforth-0.3.0  MACHINE=`hostname`
 mkdir test  GFORTH=`basename $1 .tar.gz`
 cd test  
 DIR=$PWD  DIR=$PWD
 gunzip -cd ../$GFORTH.tar.gz|tar xf -  rm -rf $GFORTH
 chmod -R a-w $GFORTH  gunzip -cd $1 | tar xf -
 mkdir build  if make --version|grep -q GNU
 cd build  then
 ../$GFORTH/configure --prefix=$DIR/install          echo building in build
           chmod -R a-w $GFORTH
           mkdir build
           cd build
           ../$GFORTH/configure --prefix=$DIR/install
   else
           echo building in $GFORTH
           cd $GFORTH
           ./configure --prefix=$DIR/install
   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
 cd ..  cd ..
 install/bin/gforth tester.fs coretest.fs postponetest.fs dbltest.fs -e bye  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
 cd ..  cd ..
 rm -rf test  

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


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