summaryrefslogtreecommitdiffstats
path: root/bin/runtest
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2004-09-29 19:18:49 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2004-09-29 19:18:49 (GMT)
commite0c4a752e6522a2d6bf50cef42bccf165264a89c (patch)
treeabbe5943a536a5eb93208b28d4278fa1be7111e3 /bin/runtest
parentd0abb4a760c9a63b2a03747246bf8c3ffa75cde9 (diff)
downloadhdf5-e0c4a752e6522a2d6bf50cef42bccf165264a89c.zip
hdf5-e0c4a752e6522a2d6bf50cef42bccf165264a89c.tar.gz
hdf5-e0c4a752e6522a2d6bf50cef42bccf165264a89c.tar.bz2
[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:
Diffstat (limited to 'bin/runtest')
-rwxr-xr-xbin/runtest6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/runtest b/bin/runtest
index 988981c..4848f17 100755
--- a/bin/runtest
+++ b/bin/runtest
@@ -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