[svn-r14177] bug fix:

uncomment code that cleans output files, that was accidently left commented
tested: linux
This commit is contained in:
Pedro Vicente Nunes 2007-10-02 15:17:32 -05:00
parent 22be11f0d9
commit bbe71dc3b6

View File

@ -95,9 +95,9 @@ TOOLTEST() {
fi
# Clean up output file
# if test -z "$HDF5_NOCLEANUP"; then
# rm -f $actual $actual_err
# fi
if test -z "$HDF5_NOCLEANUP"; then
rm -f $actual $actual_err
fi
}
@ -134,9 +134,9 @@ TOOLTEST1() {
fi
# Clean up output file
# if test -z "$HDF5_NOCLEANUP"; then
# rm -f $actual $actual_err
# fi
if test -z "$HDF5_NOCLEANUP"; then
rm -f $actual $actual_err
fi
}