File:  [gforth] / gforth / testclean
Revision 1.2: download - view: text, annotated - select for diffs
Thu Mar 20 14:39:53 1997 UTC (27 years ago) by anton
Branches: MAIN
CVS tags: v0-3-0, HEAD
fixed a few Makefile bugs (make clean)
renamed blocks.fs:flush-file into flush-blocks
fixed bell bug (now flushes the output)
documentation changes

    1: #usage: invoke this in the gforth directory
    2: GFORTH=gforth-0.3.0
    3: make dist
    4: mkdir test
    5: cd test
    6: for i in orig changed
    7: do
    8:   mkdir $i
    9:   cd $i
   10:   tar xfz ../../$GFORTH.tar.gz
   11:   cd ..
   12: done
   13: cd changed/$GFORTH
   14: ./configure >/dev/null
   15: make >/dev/null 2>/dev/null
   16: make distclean
   17: cd ../..
   18: echo checking distclean
   19: diff -rq orig changed
   20: for i in orig changed
   21: do
   22:   cd $i/$GFORTH
   23:   ./configure >/dev/null
   24:   cd ../..
   25: done
   26: cd changed/$GFORTH
   27: make >/dev/null 2>/dev/null
   28: make clean
   29: cd ../..
   30: echo checking clean
   31: diff -rq orig changed
   32: cd ..
   33: rm -rf test

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