changeset 818:685fc620d721

Tests: skip test broken by header compression in h2.t.
author Andrey Zelenkov <zelenkov@nginx.com>
date Fri, 15 Jan 2016 18:01:29 +0300
parents ada7d1ad985b
children 3200d5b4ffa8
files h2.t
diffstat 1 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/h2.t
+++ b/h2.t
@@ -1939,6 +1939,9 @@ ok(join('', @{$frame->{headers}->{'x-lon
 
 # response header block split and sent in parts
 
+SKIP: {
+skip 'broken by header compression', 1 unless $ENV{TEST_NGINX_UNSAFE};
+
 $sess = new_session(8092);
 $sid = new_stream($sess, { path => '/continuation?h=' . 'x' x 2**15 });
 $frames = h2_read($sess, all => [{ sid => $sid, fin => 0x4 }]);
@@ -1950,6 +1953,8 @@ like($lengths, qr/16384 16384 16384 1638
 
 }
 
+}
+
 # max_field_size - header field name
 
 $sess = new_session(8087);