summaryrefslogtreecommitdiffstats
path: root/perform
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2001-09-11 04:56:54 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2001-09-11 04:56:54 (GMT)
commitebc3c0980a6ddd5a35cd74608a62114fa7a1b51f (patch)
treec6a10e35b5ef57287b60ef9c1559df719c8c234f /perform
parent1ebf933310232f12e2c5e1e3a39efe3a3c6bcf15 (diff)
downloadhdf5-ebc3c0980a6ddd5a35cd74608a62114fa7a1b51f.zip
hdf5-ebc3c0980a6ddd5a35cd74608a62114fa7a1b51f.tar.gz
hdf5-ebc3c0980a6ddd5a35cd74608a62114fa7a1b51f.tar.bz2
[svn-r4436] Purpose:
New feature. Description: Test programs were assumed to be serial programs only. There was no provision to test parallel programs automatically. Solution: Added $(TEST_PARA_PROGS) to hold parallel test programs and added appropriate action entry to test them if defined. Platforms tested: Eirene (parallel, serial).
Diffstat (limited to 'perform')
-rw-r--r--perform/Makefile.in5
1 files changed, 2 insertions, 3 deletions
diff --git a/perform/Makefile.in b/perform/Makefile.in
index 8c63706..31c6149 100644
--- a/perform/Makefile.in
+++ b/perform/Makefile.in
@@ -17,8 +17,7 @@ LIBH5TEST=../test/libh5test.la
## These are the programs that `make all' or `make tests' will build and which
## `make check' will run. List them in the order they should be run.
TEST_PROGS_PARA=mpi-perf perf
-TEST_PROGS=iopipe chunk overhead \
- $(TEST_PROGS_PARA)
+TEST_PROGS=iopipe chunk overhead
## These are the files that `make clean' (and derivatives) will remove from
## this directory.
@@ -33,7 +32,7 @@ TEST_SRC=iopipe.c chunk.c overhead.c \
TEST_OBJ=$(TEST_SRC:.c=.lo)
## How to build the programs... they all depend on the hdf5 library
-$(TEST_PROGS): $(LIBHDF5)
+$(TEST_PROGS) $(TEST_PROGS_PARA): $(LIBHDF5)
perf: perf.lo
@$(LT_LINK_EXE) $(CFLAGS) -o $@ perf.lo $(LIBH5TEST) $(LIBHDF5) \