diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2002-08-28 23:10:42 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2002-08-28 23:10:42 (GMT) |
commit | 35ea1840d10840db266a3343ecbd1ca21c68b16d (patch) | |
tree | bc60ff3991714712d6bd129ec24fabf3f8a48ef6 /testpar | |
parent | 7bff4eb559d3f28f27ab29ced0d1e46ada1df620 (diff) | |
download | hdf5-35ea1840d10840db266a3343ecbd1ca21c68b16d.zip hdf5-35ea1840d10840db266a3343ecbd1ca21c68b16d.tar.gz hdf5-35ea1840d10840db266a3343ecbd1ca21c68b16d.tar.bz2 |
[svn-r5905] Purpose:
Bug fix
Description:
script did not work for SP system.
Solution:
added "eval" command to launch the mpi execution. This works fine
for SP and is basically a no-op for non-batch systems like workstations.
Also got rid of the wrongle implemented TESTING message since the
result was not printed and the tests output mess up the format already.
Platforms tested:
SP (snow). Did not test more since it has been tested out fine
in the v1.4 checkin.
Diffstat (limited to 'testpar')
-rw-r--r-- | testpar/testph5.sh.in | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/testpar/testph5.sh.in b/testpar/testph5.sh.in index ccec437..409416b 100644 --- a/testpar/testph5.sh.in +++ b/testpar/testph5.sh.in @@ -41,9 +41,8 @@ TESTING() { # TOOLTEST() { # Run test. - TESTING $TEST_APP $@ - echo $TEST_APP_BIN - $RUNPARALLEL $TEST_APP_BIN "$@" + echo $RUNPARALLEL $TEST_APP_BIN "$@" + eval $RUNPARALLEL $TEST_APP_BIN "$@" } ############################################################################## |