[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.
This commit is contained in:
Albert Cheng 2003-05-13 20:31:58 -05:00
parent d94e2f4d8a
commit 8d2ffa47a5

View File

@ -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