summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2003-05-14 01:31:58 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2003-05-14 01:31:58 (GMT)
commit8d2ffa47a5e61086b5705fe31234df2cef7902b1 (patch)
treeb1ca1b3230e291e7967c43b74b0e196b8d9a9e65 /Makefile.in
parentd94e2f4d8ada49121e671d889ffe9ffab908ba88 (diff)
downloadhdf5-8d2ffa47a5e61086b5705fe31234df2cef7902b1.zip
hdf5-8d2ffa47a5e61086b5705fe31234df2cef7902b1.tar.gz
hdf5-8d2ffa47a5e61086b5705fe31234df2cef7902b1.tar.bz2
[svn-r6872] Purpose:
Improvement, IMO. Description: The parallel tests were run after all tools tests. For some parallel systems, that could be a long time. Since tools are better tested in serial mode and one would like to see the results of parallel tests sooner in parallel mode, I moved the parallel tests before the tools tests. Platforms tested: Only tested in Eirene, both serial and parallel modes. No need for three platforms test since this is just a simple Makefile change.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 6f2ad48..0b78e07 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -23,7 +23,9 @@ srcdir=@srcdir@
@COMMENCE@
# Subdirectories in build-order (not including `examples')
-SUBDIRS=src test tools @PABLO@ @TESTPARALLEL@ @subdirs@
+# TESTPARALLEL must be after test since it uses libtest.a. Putting it
+# before tools allows parallel tests to run sooner.
+SUBDIRS=src test @TESTPARALLEL@ tools @PABLO@ @subdirs@
##############################################################################
## T A R G E T S