Annotation of gforth/testdist, revision 1.1

1.1     ! anton       1: #tests that dist works
        !             2: #call this with gforth-$(version).tar.gz in the working directory
        !             3: GFORTH=gforth-0.2.0
        !             4: mkdir test
        !             5: cd test
        !             6: DIR=$PWD
        !             7: gunzip -cd ../$GFORTH.tar.gz|tar xf -
        !             8: chmod -R a-w $GFORTH
        !             9: mkdir build
        !            10: cd build
        !            11: ../$GFORTH/configure --prefix=$DIR/install
        !            12: make
        !            13: make check
        !            14: #gforth locals-test.fs
        !            15: #gforth test-counted-loops.fs
        !            16: make install
        !            17: make bench
        !            18: cd ..
        !            19: install/bin/gforth tester.fs coretest.fs postponetest.fs dbltest.fs -e bye
        !            20: chmod -R +w $GFORTH
        !            21: cd ..
        !            22: rm -rf test

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