mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-24 15:25:00 +08:00
[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:
This commit is contained in:
parent
7696942940
commit
10247df1bc
@ -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 \
|
||||
|
Loading…
Reference in New Issue
Block a user