aboutsummaryrefslogtreecommitdiff
path: root/testcurl.sh
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-07-23 17:28:36 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-07-23 17:28:36 +0000
commit297b1b5013760e5e732c9229bc31d062413219d0 (patch)
tree18a2e1525b509627fca0f50700217ab82e122d53 /testcurl.sh
parente9f63bf4e84dfdc22b6fb0469747b9067b90943b (diff)
the test compared numericly if though it could contain a string, and I
lowered the number of retries to 10
Diffstat (limited to 'testcurl.sh')
-rwxr-xr-xtestcurl.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/testcurl.sh b/testcurl.sh
index c27f0e316..c3f5e8f80 100755
--- a/testcurl.sh
+++ b/testcurl.sh
@@ -123,8 +123,8 @@ att="0"
while cvsup; do
att=`expr $att + 1`
echo "testcurl: failed CVS update attempt number $att."
- if [ $att -gt 50 ]; then
- cvsstat="BADNESS"
+ if [ $att -gt 10 ]; then
+ cvsstat="111"
break # get out of the loop
fi
sleep 5