File:  [gforth] / gforth / testclean
Revision 1.3: download - view: text, annotated - select for diffs
Thu May 29 19:42:14 1997 UTC (26 years, 10 months ago) by pazsan
Branches: MAIN
CVS tags: HEAD
Bug fixes, consistency improvements,
added lib.fs

#usage: invoke this in the gforth directory
GFORTH=gforth-0.3.1
make dist
mkdir test
cd test
for i in orig changed
do
  mkdir $i
  cd $i
  tar xfz ../../$GFORTH.tar.gz
  cd ..
done
cd changed/$GFORTH
./configure >/dev/null
make >/dev/null 2>/dev/null
make distclean
cd ../..
echo checking distclean
diff -rq orig changed
for i in orig changed
do
  cd $i/$GFORTH
  ./configure >/dev/null
  cd ../..
done
cd changed/$GFORTH
make >/dev/null 2>/dev/null
make clean
cd ../..
echo checking clean
diff -rq orig changed
cd ..
rm -rf test

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