Diff for /gforth/testdist between versions 1.10 and 1.15

version 1.10, 2003/02/01 15:52:25 version 1.15, 2003/08/25 08:02:58
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=`cygpath -m \`pwd\` 2>/dev/null` || DIR=`pwd`
   test -z "$CC" && CC=cc
 chmod -R +w $GFORTH  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
 then  then
         echo building in build          echo building in build
         chmod -R a-w $GFORTH          chmod -R a-w $GFORTH
           rm -rf build
         mkdir build          mkdir build
         cd build          cd build
         ../$GFORTH/configure --prefix=$DIR/install          ../$GFORTH/configure --prefix=$DIR/install
Line 19  else Line 21  else
         echo building in $GFORTH          echo building in $GFORTH
         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 all-bench &&
 chmod -R +w ../$GFORTH/vmgen-ex ../$GFORTH/vmgen-ex2 &&  chmod -R +w ../$GFORTH/vmgen-ex ../$GFORTH/vmgen-ex2 &&
 cd ../$GFORTH/vmgen-ex &&  cd ../$GFORTH/vmgen-ex &&
 PATH=$DIR/install/bin:$PATH make check &&  PATH=$DIR/install/bin:$PATH make check GCC="$CC -O" YACC=yacc LEX=lex &&
 cd ../vmgen-ex2 &&  cd ../vmgen-ex2 &&
 PATH=$DIR/install/bin:$PATH make check &&  PATH=$DIR/install/bin:$PATH make check GCC="$CC -O" YACC=yacc LEX=lex &&
 cd .. &&  cd .. &&
 make all-bench &&  
 cd .. &&  cd .. &&
 install/bin/gforth test/tester.fs test/coretest.fs test/postpone.fs test/dbltest.fs -e bye &&  install/bin/gforth test/tester.fs test/coretest.fs test/postpone.fs test/dbltest.fs -e bye &&
 echo test ok  echo test ok )
 chmod -R +w $GFORTH  chmod -R +w $GFORTH
 cd ..  cd ..

Removed from v.1.10  
changed lines
  Added in v.1.15


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