diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2005-01-08 21:25:18 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2005-01-08 21:25:18 (GMT) |
commit | d7f580b7cc80d53cfba366e2f7c3865d46833030 (patch) | |
tree | 32ae499e2482f0e2e6a1102e90914c08eca1c953 | |
parent | 7faa297ea6144a08e3e2284d3065d502c2598a87 (diff) | |
download | hdf5-d7f580b7cc80d53cfba366e2f7c3865d46833030.zip hdf5-d7f580b7cc80d53cfba366e2f7c3865d46833030.tar.gz hdf5-d7f580b7cc80d53cfba366e2f7c3865d46833030.tar.bz2 |
[svn-r9784] Purpose:
slight improvement
Description:
Added a time stamp when a host is not reachable.
Added a pause to let timekeeper to complete.
Platforms tested:
It should work.
-rwxr-xr-x | bin/runtest | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/bin/runtest b/bin/runtest index 7a5c11e..3b32fb5 100755 --- a/bin/runtest +++ b/bin/runtest @@ -786,10 +786,10 @@ if [ -n "$TESTHOST" -a $HOSTNAME != "$TESTHOST" ]; then fi ;; NoRemoteCommand) - PRINT $h does not accept Remote Command + PRINT $h does not accept Remote Command "(`date`)" ;; NotReachable) - PRINT $h is not reachable + PRINT $h is not reachable "(`date`)" ;; *) PRINT "CHECK_RSH for $h returned unknow result ($RSH)" @@ -798,6 +798,8 @@ if [ -n "$TESTHOST" -a $HOSTNAME != "$TESTHOST" ]; then done # wait for all launched tests to finish, then cat them back out. wait + # Pause a moment in case the timekeeper is terminating processes. + wait 30 for h in $TESTHOST; do h=`echo $h | cut -f1 -d/` TMP_OUTPUT="#$h.out" |