summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2005-01-08 21:25:20 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2005-01-08 21:25:20 (GMT)
commitec36afaae44b4824ea6782df1d8adc575fd95c33 (patch)
treed4e0e9d7d0ff61f62002947814ca7ae90f9b8e8d
parentb3906ef2dae3d9179c3eb50939e1c666324ab52b (diff)
downloadhdf5-ec36afaae44b4824ea6782df1d8adc575fd95c33.zip
hdf5-ec36afaae44b4824ea6782df1d8adc575fd95c33.tar.gz
hdf5-ec36afaae44b4824ea6782df1d8adc575fd95c33.tar.bz2
[svn-r9785] 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-xbin/runtest6
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"