summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPedro Vicente Nunes <pvn@hdfgroup.org>2007-10-02 20:17:32 (GMT)
committerPedro Vicente Nunes <pvn@hdfgroup.org>2007-10-02 20:17:32 (GMT)
commitbbe71dc3b6e13ec3d0b95aeeda4f7033ce37eed6 (patch)
treebeb440a0ca97db45eadd9a7b6fbfc4420faf16ec
parent22be11f0d9cd3e0e366b2b4dfe14933fdcf3687e (diff)
downloadhdf5-bbe71dc3b6e13ec3d0b95aeeda4f7033ce37eed6.zip
hdf5-bbe71dc3b6e13ec3d0b95aeeda4f7033ce37eed6.tar.gz
hdf5-bbe71dc3b6e13ec3d0b95aeeda4f7033ce37eed6.tar.bz2
[svn-r14177] bug fix:
uncomment code that cleans output files, that was accidently left commented tested: linux
-rw-r--r--tools/h5dump/testh5dump.sh.in12
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/h5dump/testh5dump.sh.in b/tools/h5dump/testh5dump.sh.in
index 140dfce..76c5ba7 100644
--- a/tools/h5dump/testh5dump.sh.in
+++ b/tools/h5dump/testh5dump.sh.in
@@ -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
}