diff options
author | HDF Admin <hdfadmin@ncsa.uiuc.edu> | 2001-10-19 23:53:48 (GMT) |
---|---|---|
committer | HDF Admin <hdfadmin@ncsa.uiuc.edu> | 2001-10-19 23:53:48 (GMT) |
commit | d57f0c6f00e12439aaff5296143af97ee17f2641 (patch) | |
tree | 9cbc4c7fe6294c2749f4990bb69a69aab4ff971c | |
parent | 4d7cdc099b0082053cdb729ff53ac828204dbc59 (diff) | |
download | hdf5-d57f0c6f00e12439aaff5296143af97ee17f2641.zip hdf5-d57f0c6f00e12439aaff5296143af97ee17f2641.tar.gz hdf5-d57f0c6f00e12439aaff5296143af97ee17f2641.tar.bz2 |
[svn-r4558] Purpose:
kludge
Description:
Somehow if consecutive "rsh houdin -n ..." are issued too close,
a "Connection refused" result. Then /usr/local/krb5/rsh falls
back to ordinary rsh protocal which of course won't work either.
Solution:
if the houdin to be tested is houdin, wait for 5 seconds before
launching the 'rsh ...' command. Hopefully the system admin can
fix the rsh problem.
Platforms tested:
eirene talking to houdin.
-rwxr-xr-x | bin/runtest | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/runtest b/bin/runtest index bf346fb..880e6d5 100755 --- a/bin/runtest +++ b/bin/runtest @@ -640,6 +640,10 @@ if [ -n "$TESTHOST" -a $HOSTNAME != "$TESTHOST" ]; then case "$RSH" in rsh|ssh) PRINT $RSH $h -n $PROGNAME + # kludge: some how eirene and houdin can not have + # rsh connections too close. wait a few seconds + test $h = houdin && echo "wait 10 sec for houdin" && sleep 10 + # launch concurrent tests only if srcdir is used if [ -n "$SRCDIR" ]; then $RSH $h -n $PROGNAME & |