summaryrefslogtreecommitdiffstats
path: root/tools/h5import
diff options
context:
space:
mode:
authorMike McGreevy <mamcgree@hdfgroup.org>2010-05-14 20:30:58 (GMT)
committerMike McGreevy <mamcgree@hdfgroup.org>2010-05-14 20:30:58 (GMT)
commitc4b0bcda1253e44bfbd5a04e07e9b9a54cf88f52 (patch)
tree40145ad30f306dbff8892e1b83b8bf0a9da40dc7 /tools/h5import
parent9635cdc24f31a557923d1b789f835fe563533e5f (diff)
downloadhdf5-c4b0bcda1253e44bfbd5a04e07e9b9a54cf88f52.zip
hdf5-c4b0bcda1253e44bfbd5a04e07e9b9a54cf88f52.tar.gz
hdf5-c4b0bcda1253e44bfbd5a04e07e9b9a54cf88f52.tar.bz2
[svn-r18809] Purpose:
Fixed file cleanup during make distclean / make check. Description: The h5jam Makefile and the h5importtestutil.sh script both included cleanup steps that removed "*.txt" from the directory. This resulted in the new CMake specific configuration file, CMakeLists.txt, getting blown away by make distclean (for h5jam) and make check (for h5import). I've removed the *.txt from the h5jam Makefile as the directory looks to be getting cleaned appropriately without it, and I've modified the h5import script h5importtestutil.sh to point to the specific .txt files to clean. Tested: jam
Diffstat (limited to 'tools/h5import')
-rwxr-xr-xtools/h5import/h5importtestutil.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/h5import/h5importtestutil.sh b/tools/h5import/h5importtestutil.sh
index 9ec8e15..d558eba 100755
--- a/tools/h5import/h5importtestutil.sh
+++ b/tools/h5import/h5importtestutil.sh
@@ -108,7 +108,7 @@ TOOLTEST $srcdir/testfiles/str.txt -c $srcdir/testfiles/textstr.conf -o test14.h
TESTING "ASCII F64 - rank 1 - INPUT-CLASS TEXTFPE "
TOOLTEST $srcdir/testfiles/in64.txt -c $srcdir/testfiles/textpfe.conf -o test15.h5
-rm -f *.txt *.bin *.h5
+rm -f txtin32.txt txtin16.txt *.bin *.h5
rm -rf tmp_testfiles
else
echo "** h5import or h5importtest not available ***"