From a034208a00fb7e7abcb124f782827792e0cfa450 Mon Sep 17 00:00:00 2001
From: Daniel Stenberg <daniel@haxx.se>
Date: Wed, 22 Jan 2003 12:29:19 +0000
Subject: [PATCH] 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.
---
 testcurl.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/testcurl.sh b/testcurl.sh
index 79d2028f31..4dca362907 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
 
-- 
GitLab