Fix some test failures when Configured with zlib
authorMatt Caswell <matt@openssl.org>
Sat, 19 Sep 2015 19:07:33 +0000 (20:07 +0100)
committerMatt Caswell <matt@openssl.org>
Sat, 19 Sep 2015 19:07:33 +0000 (20:07 +0100)
TLSProxy was failing if we are Configured with compression because it
doesn't support it. This fix simply switches compression off for the
purposes of the test.

Reviewed-by: Richard Levitte <levitte@openssl.org>
util/TLSProxy/Proxy.pm

index 75094f1a44a961a1333a6970c0e46bb5c0cb4011..6c1ea7780aad09946a35912f0becb636e6a4912a 100644 (file)
@@ -144,7 +144,8 @@ sub start
         open(STDOUT, ">", File::Spec->devnull())
             or die "Failed to redirect stdout";
         open(STDERR, ">&STDOUT");
-        my $execcmd = $self->execute." s_server -rev -engine ossltest -accept "
+        my $execcmd = $self->execute
+            ." s_server -no_comp -rev -engine ossltest -accept "
             .($self->server_port)
             ." -cert ".$self->cert." -naccept ".$self->serverconnects;
         if ($self->ciphers ne "") {