[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.
This commit is contained in:
Albert Cheng 2002-08-28 18:10:42 -05:00
parent 7bff4eb559
commit 35ea1840d1

View File

@ -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 "$@"
}
##############################################################################