aboutsummaryrefslogtreecommitdiff
path: root/testcurl.sh
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-01-22 12:29:19 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-01-22 12:29:19 +0000
commita034208a00fb7e7abcb124f782827792e0cfa450 (patch)
treeb2124bbbd76380fe35e04d4440719cbf7cb7f34b /testcurl.sh
parent5f1251586b7b0d9b01d7d06ae20e4c34f0c23b5e (diff)
reversed the actions on the cmp check for detecting if we're re-running
a test on the same CVS setup as previous, as they seemed to be wrong. We're not actually using the result for anything at this point though.
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 79d2028f3..4dca36290 100755
--- a/testcurl.sh
+++ b/testcurl.sh
@@ -115,11 +115,11 @@ find . -name Entries -exec cat {} \; > "$newstat"
if [ -r "$oldstat" ]; then
# there is a previous cvs stat file to compare with
if { cmp "$oldstat" "$newstat"; } then
- echo "testcurl: there has been a change in the CVS"
- else
echo "testcurl: this is the same CVS status as before"
echo "testcurl: ALREADY TESTED THIS SETUP BEFORE"
#die
+ else
+ echo "testcurl: there has been a change in the CVS"
fi
fi