diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-01-22 12:29:19 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-01-22 12:29:19 +0000 |
commit | a034208a00fb7e7abcb124f782827792e0cfa450 (patch) | |
tree | b2124bbbd76380fe35e04d4440719cbf7cb7f34b | |
parent | 5f1251586b7b0d9b01d7d06ae20e4c34f0c23b5e (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.
-rwxr-xr-x | testcurl.sh | 4 |
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 |