diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2005-08-08 17:24:06 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2005-08-08 17:24:06 (GMT) |
commit | 1b760b2fd52f0a84af2353e8e7a83dd2686ddc23 (patch) | |
tree | f0b98bd44226d03d7fb61ae87e1afabbbc7eb360 /config | |
parent | 88046b9049287f7ee6c7aee0af98b940b575af11 (diff) | |
download | hdf5-1b760b2fd52f0a84af2353e8e7a83dd2686ddc23.zip hdf5-1b760b2fd52f0a84af2353e8e7a83dd2686ddc23.tar.gz hdf5-1b760b2fd52f0a84af2353e8e7a83dd2686ddc23.tar.bz2 |
[svn-r11212] Purpose:
Bug fix and improvement.
Description:
The test output were not displayed for parallel tests.
The serial tests output were always displayed whether the test was
actually ran this time or not.
Solution:
Moved the display of test output inside the target where the actual
tests are run.
Platforms tested:
Tested in heping using pp and fortran.
Diffstat (limited to 'config')
-rw-r--r-- | config/conclude.am | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/config/conclude.am b/config/conclude.am index e0746a8..5e0362b 100644 --- a/config/conclude.am +++ b/config/conclude.am @@ -79,14 +79,6 @@ TEST_SCRIPT_CHKSH=$(TEST_SCRIPT:=.chksh_) TEST_SCRIPT_PARA_CHKSH=$(TEST_SCRIPT_PARA:=.chksh_) _exec_check-s: $(TEST_PROG_CHKEXE) $(TEST_SCRIPT_CHKSH) - @for d in dummy $(TEST_PROG_CHKEXE:.chkexe_=.log) \ - $(TEST_SCRIPT_CHKSH:.chksh_=.logsh); do \ - if test $$d != dummy && test $$d != .log && \ - test $$d != .logsh; then \ - cat `basename $$d`; \ - fi; \ - done - # The dummy.chkexe here prevents the target from being # empty if there are no tests in the current directory. @@ -121,6 +113,7 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ echo "============================" >> $${log}; \ echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ fi; \ echo "============================"; \ fi @@ -159,6 +152,7 @@ $(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummy.chksh_: echo "Finished testing $${tname} $(TEST_FLAGS)" >> $${log}; \ echo "============================" >> $${log}; \ echo "Finished testing $${tname} $(TEST_FLAGS)"; \ + cat $${log}; \ fi; \ echo "============================"; \ fi |