summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>1998-09-25 22:40:09 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>1998-09-25 22:40:09 (GMT)
commitb1df4a74cd6a4e620a7f73cedce611988ca151d8 (patch)
tree1d3e51abf94d7f5d71dfbc2cf247caabe67b39c6
parent06935ba4bbc21defb89f19321650b931e9d63fb2 (diff)
downloadhdf5-b1df4a74cd6a4e620a7f73cedce611988ca151d8.zip
hdf5-b1df4a74cd6a4e620a7f73cedce611988ca151d8.tar.gz
hdf5-b1df4a74cd6a4e620a7f73cedce611988ca151d8.tar.bz2
[svn-r725] Added the testh5dump test back into the automatic test.
During make test, it copies the master copy testh5dump.sh to a temperary copy, testh5dump and run it. Make clean remove only duplicated version, not the original master. Platform test: baldric.
-rw-r--r--tools/Makefile.in5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/Makefile.in b/tools/Makefile.in
index 05202d6..96a757f 100644
--- a/tools/Makefile.in
+++ b/tools/Makefile.in
@@ -10,7 +10,7 @@
CPPFLAGS=-I../src -I. @CPPFLAGS@
# Tools test targets.
-#TESTS=testh5dump.sh
+TESTS=testh5dump
# These are our main targets:
PROGS=h5debug h5import h5ls h5repart h5dump
@@ -42,4 +42,7 @@ h5repart: h5repart.o $(LIB) ../src/libhdf5.a
h5dump: h5dump.o h5dumputil.o $(LIB) ../src/libhdf5.a
$(CC) $(CFLAGS) -o $@ h5dump.o h5dumputil.o $(LIBS)
+testh5dump: testh5dump.sh
+ cp testh5dump.sh $@
+
@CONCLUDE@