summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2001-03-17 15:20:46 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2001-03-17 15:20:46 (GMT)
commit2aefa8a0a4fda831718ba5e2806f404f873a64f7 (patch)
tree60c15d4e183f31e0c7bf04d464b39f555b4fdaef
parent542362385c661084613614f84f422f80c5923523 (diff)
downloadhdf5-2aefa8a0a4fda831718ba5e2806f404f873a64f7.zip
hdf5-2aefa8a0a4fda831718ba5e2806f404f873a64f7.tar.gz
hdf5-2aefa8a0a4fda831718ba5e2806f404f873a64f7.tar.bz2
[svn-r3656] Purpose:
adjustment Description: When gondolin failed the 1.5 test, it moved ahead for the 1.4 test. The 1.5 test usually takes 1 hour to complete but runtest only waited 30 minutes for the 1.4 cvs update to complete. So, gondolin ended up failing the 1.4 test too. Solution: Changed the wait time to 90 minutes. Added echo statements showing it is waiting for some event. This would help the human knowing it is waiting for something. Added more comments about the algorithm of the waiting. Platforms tested: Gotta be right. :-)
-rwxr-xr-xbin/runtest9
1 files changed, 7 insertions, 2 deletions
diff --git a/bin/runtest b/bin/runtest
index d77ffa3..35ec892 100755
--- a/bin/runtest
+++ b/bin/runtest
@@ -207,6 +207,7 @@ WAITFOR()
fi
while [ ! -f $wait_file ]; do
if [ $nminutes -gt 0 ]; then
+ echo "Wait For $wait_file to appear"
sleep 60 #sleep 1 minute
else
WAIT_STATUS=1
@@ -239,6 +240,7 @@ WAITTILL()
fi
while [ -f $wait_file ]; do
if [ $nminutes -gt 0 ]; then
+ echo "Wait till $wait_file has disappeared"
sleep 60 #sleep 1 minute
else
WAIT_STATUS=1
@@ -518,8 +520,11 @@ if [ -z "$NOCVS" -a ! -f $CVSLOG ]; then
fi
PRINT_BLANK
else
- # make sure the cvs update, if done by another host, has completed
- WAITFOR $CVSLOG 30
+ # make sure the cvs update, if done by another host, has completed.
+ # First wait for the presence of $CVSLOG which signals some host
+ # has started the cvs update. Then wait for the absense of $CVSLOG_LOCK
+ # which signals the host has completed the cvs update.
+ WAITFOR $CVSLOG 90
if [ $WAIT_STATUS -ne 0 ]; then
errcode=$WAIT_STATUS
REPORT_ERR "****Time expired waiting CVS update to start****"