diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-02-06 07:15:27 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-02-06 07:15:27 +0000 |
commit | 58a5f485dbafdb66ad9d18dfc0c8162f5b2fbc0a (patch) | |
tree | c73ff9b51bf31c03b2bb3b5397f05f9d45296e5d | |
parent | e8fb77fac369ee2424be717302757a6fb8b451df (diff) |
Remove the attempt to detect if we already tested the same source setup.
We really don't care, and so many other things could've changed to make the
new test interesting anyway.
-rwxr-xr-x | testcurl.sh | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/testcurl.sh b/testcurl.sh index f256e06cf..809c2c070 100755 --- a/testcurl.sh +++ b/testcurl.sh @@ -163,22 +163,6 @@ if [ $CVS -eq 1 ]; then die fi - # figure out the current collected CVS status - newstat="../allcvs.log" - oldstat="../oldcvs.log" - 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: 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 - # remove possible left-overs from the past rm -f configure rm -rf autom4te.cache |