From 10247df1bce417cebd4ef269c462dd56afc2628b Mon Sep 17 00:00:00 2001 From: Albert Cheng Date: Thu, 2 Jun 2005 18:40:47 -0500 Subject: [svn-r10848] Purpose: bug fix Description: check-s and check-p were set as pre-requistics of test. They would get executed in parallel if parallel make is used. This could cause problems since serial tests are used to be executed before parallel tests. It is not known if it is always okay to run serial and parallel tests in simultantously. Solution: Change check-s and check-p as actions of the target test so that they get executed sequnentially. Platforms tested: heping PP. Misc. update: --- c++/Makefile.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/c++/Makefile.in b/c++/Makefile.in index e239431..2a3ba8f 100644 --- a/c++/Makefile.in +++ b/c++/Makefile.in @@ -662,7 +662,9 @@ install-doc uninstall-doc: # TEST_PROG_PARA, or TEST_SCRIPT will actually be executed. check-TESTS: test -test _test: check-s check-p +test _test: + $(MAKE) check-s + $(MAKE) check-p check-s: $(LIB) $(PROGS) $(TESTS) @if test -n "$(TEST_PROG)$(TEST_SCRIPT)"; then \ -- cgit v0.12