[svn-r1829] Did a make distclean in the test stage to clean away previous tests.

Changed _test to check which is the proper name for the testing target.
This commit is contained in:
Albert Cheng 1999-11-04 15:35:23 -05:00
parent febbb4c50d
commit 2b10001114

View File

@ -134,6 +134,15 @@ fi # Do CVS checkout
# Run Test the HDF5 library
#=============================
if [ "$cmd" = "all" -o -n "$cmdtest" ]; then
# Make sure current version exists and is clean
if [ -d ${COMPARE}/current ]; then
(cd ${COMPARE}/current && make distclean)
else
errcode=$?
snapshot=no
exit $errcode
fi
# Compare it with the previous version. Compare only files listed in
# the MANIFEST plus the MANIFEST itself.
if [ -d ${COMPARE}/previous ]; then
@ -153,7 +162,7 @@ if [ "$cmd" = "all" -o -n "$cmdtest" ]; then
if [ "$snapshot" = "yes" ]; then
if (cd ${COMPARE}/current; \
${CONFIGURE}; \
make _test); then
make check); then
:
else
errcode=$?