[gforth] / gforth / testdist  

gforth: gforth/testdist

Diff for /gforth/testdist between version 1.3 and 1.19

version 1.3, Thu Mar 20 14:39:53 1997 UTC version 1.19, Sat Oct 25 22:48:20 2008 UTC
Line 1 
Line 1 
   #! /bin/bash
 #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  result=ok
 DIR=$PWD  for CC in `(shopt -s nullglob; for i in /usr/sfw/bin /opt/csw/gcc4/bin \`echo $PATH|sed 's/:/ /g'\`; do for j in $i/gcc-*; do basename $j; done; done )|sort -u`; do
 gunzip -cd ../$GFORTH.tar.gz|tar xf -      last=broken
       rm -rf $CC
       mkdir $CC
       cd $CC
       PATHDIR=`pwd`
       DIR=`cygpath -m \`pwd\` 2>/dev/null` || DIR=`pwd`
       chmod -R +w $GFORTH
       rm -rf $GFORTH
       gunzip -cd ../$1 | tar xf -
       (if make --version|grep -q GNU
        then
           echo building in build with $CC
 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 CC=$CC
 make       else
 make check          echo building in $GFORTH with $CC
           cd $GFORTH
           ./configure --prefix=$DIR/install CC=$CC
        fi &&
        make &&
 #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 &&
 cd ..       chmod -R +w ../$GFORTH/vmgen-ex ../$GFORTH/vmgen-ex2 &&
 install/bin/gforth tester.fs coretest.fs postponetest.fs dbltest.fs -e bye       cd ../$GFORTH/vmgen-ex &&
        PATH=$PATHDIR/install/bin:$PATH make check GCC="$CC -O" YACC=yacc LEX=lex &&
        cd ../vmgen-ex2 &&
        PATH=$DIR/install/bin:$PATH make check GCC="$CC -O" YACC=yacc LEX=lex &&
        cd .. &&
        cd .. &&
        install/bin/gforth test/tester.fs test/coretest.fs test/postpone.fs test/dbltest.fs -e bye >&/dev/null &&
        make -f build/Makefile onebench ENGINE_FAST=install/bin/gforth-fast &&
        install/bin/gforth-fast --debug -e bye 2>&1 |grep 'Compiled with' ) &&
       last=ok
       echo $CC $last
 chmod -R +w $GFORTH  chmod -R +w $GFORTH
 cd ..  cd ..
 rm -rf test      test $result = ok -a $last = ok || result=broken
   done
   echo test $result


Generate output suitable for use with a patch program
Legend:
Removed from v.1.3  
changed lines
  Added in v.1.19

CVS Admin

Powered by ViewCVS 1.0-dev
(Powered by ViewCVS)

ViewCVS and CVS Help