[svn-r9340] Purpose:

Bug fix.

Description:
There was a historical hack to prevent runtest in multiple
hosts to run cvs update while they were launched by the daily test.
But a more proper fix has been implemented to prevent that but
this hack was not removed.  It ended up enforcing one CVS update
per day.  But if someone tested runtest during the day, it would
prevent the evening daily from doing update.  That is not good.

Solution:
Removed the hack which is not need any more.

Platforms tested:
NO h5committest since it does test runtest.  Tested it by
hand in eirene and heping.

Misc. update:
This commit is contained in:
Albert Cheng 2004-09-29 14:18:49 -05:00
parent d0abb4a760
commit e0c4a752e6

View File

@ -673,7 +673,7 @@ PRINT_BLANK
# Do a checkout if one has not been done today
# Also check MANIFEST file
if [ -z "$NOCVS" -a ! -f $CVSLOG ]; then
if [ -z "$NOCVS" ]; then
PRINT "Running CVS checkout with output saved in"
PRINT " $CVSLOG"
# Set CVS lock first
@ -729,8 +729,8 @@ if [ -z "$NODIFF" ]; then
fi
# we can use the version of script in SNAPYARD/current now.
# Don't do the diff any more.
PROGNAME="$SNAPYARD/current/$PROGNAME -nodiff"
# Don't do the diff or cvs update any more.
PROGNAME="$SNAPYARD/current/$PROGNAME -nodiff -nocvs"
# Decide to do test for the local host or for remote hosts
if [ -n "$TESTHOST" -a $HOSTNAME != "$TESTHOST" ]; then