diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2011-10-04 08:36:27 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2011-10-04 08:36:27 (GMT) |
commit | 1c3acba570df8cfb893a1086099280c07adfaf5f (patch) | |
tree | 8b8006bc1fb2efe9bafd58e9e18a13ff19eeb224 | |
parent | 082a3ce442d90cc9c7cb04c50b48690de4e67ee9 (diff) | |
download | hdf5-1c3acba570df8cfb893a1086099280c07adfaf5f.zip hdf5-1c3acba570df8cfb893a1086099280c07adfaf5f.tar.gz hdf5-1c3acba570df8cfb893a1086099280c07adfaf5f.tar.bz2 |
[svn-r21459] Problem:
Some machines, like LLNL udawn, a blue-gene machine, requires all executables,
be launched by some command like mpirun.
Solution:
Added $RUNSERIAL to launch the executable.
Tested: LLNL uDawn.
-rw-r--r-- | test/testlinks_env.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testlinks_env.sh.in b/test/testlinks_env.sh.in index e71dfc8..5a7e045 100644 --- a/test/testlinks_env.sh.in +++ b/test/testlinks_env.sh.in @@ -35,7 +35,7 @@ TEST_BIN=`pwd`/$TEST_NAME # The path of the test binary ENVCMD="env HDF5_EXT_PREFIX=.:tmp" # The environment variable & value # # Run the test -$ENVCMD $TEST_BIN +$ENVCMD $RUNSERIAL $TEST_BIN exitcode=$? if [ $exitcode -eq 0 ]; then echo "Test for HDF5_EXT_PREFIX PASSED" |