diff options
author | Daniel Stenberg <daniel@haxx.se> | 2000-11-14 11:56:16 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2000-11-14 11:56:16 +0000 |
commit | cdfa5f5d7bd9689f0168aad11c35add538acc3d3 (patch) | |
tree | d1911cdd210c6a9cb7c8e10d2b0d188def26a21d | |
parent | 0c19d2518c525bfc9f93611bcf3a311fe25a16b7 (diff) |
removed some /= 256 that was wrongly left
-rwxr-xr-x | tests/runtests.pl | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index be37618bf..0c1ac1fd0 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -195,9 +195,6 @@ sub compare { $sec="$LOGDIR/stored.tmp"; } -# $res = system("cmp $first $sec"); -# $res /= 256; - comparefiles($first, $sec); if ($res != 0) { print " $text FAILED"; @@ -291,8 +288,6 @@ sub singletest { else { # verify the received data $res = compare($CURLOUT, $REPLY, "data"); - $res /= 256; - if ($res) { exit; } @@ -300,7 +295,6 @@ sub singletest { # verify the sent request $res = compare($SERVERIN, $HTTP, "http", "^(User-Agent:|--curl|Content-Type: multipart/form-data; boundary=).*\r\n"); - $res /= 256; # The strip pattern above is for stripping off User-Agent: since # that'll be different in all versions, and the lines in a @@ -314,7 +308,6 @@ sub singletest { if ( -r "$VALIDOUT" ) { $res = compare($STDOUT, $VALIDOUT, "stdout"); - $res /= 256; if($res) { exit; } |