summaryrefslogtreecommitdiffstats
path: root/testpar/Makefile.in
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2002-07-15 15:17:05 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2002-07-15 15:17:05 (GMT)
commit004988d1f1276e6fedabb37db290cff351508506 (patch)
tree7cbdf51c1313bdfc5509113bafaf0c452242daf6 /testpar/Makefile.in
parentc40dc777a7da925cee445899b57c4954996eb06d (diff)
downloadhdf5-004988d1f1276e6fedabb37db290cff351508506.zip
hdf5-004988d1f1276e6fedabb37db290cff351508506.tar.gz
hdf5-004988d1f1276e6fedabb37db290cff351508506.tar.bz2
[svn-r5795] Purpose:
New feature Description: Changed parallel I/O tests to use test script instead of just running testphdf5 executable. This allows the MPI-posix driver to be tested easily. Platforms tested: FreeBSD 4.6 (sleipnir) w/parallel and IRIX64 6.5 (modi4) w/parallel
Diffstat (limited to 'testpar/Makefile.in')
-rw-r--r--testpar/Makefile.in11
1 files changed, 8 insertions, 3 deletions
diff --git a/testpar/Makefile.in b/testpar/Makefile.in
index 7bb94f8..01e9791 100644
--- a/testpar/Makefile.in
+++ b/testpar/Makefile.in
@@ -18,12 +18,17 @@ LIBH5TEST=../test/libh5test.la
## These tests are parallel
RUNTEST=$(RUNPARALLEL)
+## Test programs and scripts.
+##
+TEST_PROGS=t_mpi
+TEST_SCRIPTS=testph5.sh
+
## These are our main targets
-TEST_PROGS=t_mpi testphdf5
+PROGS=$(TEST_PROGS) testphdf5
## Temporary files
MOSTLYCLEAN=ParaEg[123].h5f
-DISTCLEAN=go Makefile
+DISTCLEAN=go Makefile testph5.sh
## Test source files
TEST_PHDF5_SRC=testphdf5.c t_dset.c t_file.c t_mdset.c
@@ -33,7 +38,7 @@ TEST_OBJ=$(TEST_SRC:.c=.lo)
TEST_HDR=testphdf5.h
## How to build the tests... They all depend on the hdf5 library
-$(TEST_PROGS): $(LIBHDF5) $(LIBH5TEST)
+$(PROGS): $(LIBHDF5) $(LIBH5TEST)
$(TEST_OBJ): $(TEST_HDR)