--- gforth/testdist 1998/12/22 23:11:29 1.6 +++ gforth/testdist 2003/02/01 19:59:15 1.11 @@ -5,6 +5,7 @@ MACHINE=`hostname` GFORTH=`basename $1 .tar.gz` DIR=`pwd` +chmod -R +w $GFORTH rm -rf $GFORTH gunzip -cd $1 | tar xf - if make --version|grep -q GNU @@ -19,13 +20,20 @@ else cd $GFORTH ./configure --prefix=$DIR/install fi -make -make check +make && +make check && #gforth locals-test.fs #gforth test-counted-loops.fs -make install -#make bench -cd .. -install/bin/gforth test/tester.fs test/coretest.fs test/postpone.fs test/dbltest.fs -e bye && echo test ok +make install && +#make all-bench && +chmod -R +w ../$GFORTH/vmgen-ex ../$GFORTH/vmgen-ex2 && +cd ../$GFORTH/vmgen-ex && +PATH=$DIR/install/bin:$PATH make check GCC="cc -O" && +cd ../vmgen-ex2 && +PATH=$DIR/install/bin:$PATH make check GCC="cc -O" && +cd .. && +cd .. && +install/bin/gforth test/tester.fs test/coretest.fs test/postpone.fs test/dbltest.fs -e bye && +echo test ok chmod -R +w $GFORTH cd ..