comparison grpc.t @ 1535:144c6ce732e4

Tests: removed TODO and try_run() checks for legacy versions.
author Sergey Kandaurov <pluknet@nginx.com>
date Mon, 02 Dec 2019 14:56:37 +0300
parents 01d806268a12
children fe938b5daf80
comparison
equal deleted inserted replaced
1534:96fb3513345b 1535:144c6ce732e4
197 $frames = $f->{http_end}(); 197 $frames = $f->{http_end}();
198 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames; 198 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
199 is($frame->{headers}{'x-connection'}, $c, 'keepalive 2 - connection reuse'); 199 is($frame->{headers}{'x-connection'}, $c, 'keepalive 2 - connection reuse');
200 200
201 undef $f; 201 undef $f;
202 # don't bother with a new instance until the old one is over
203 select undef, undef, undef, 0.2 unless $t->has_version('1.15.4');
204 $f = grpc(); 202 $f = grpc();
205 203
206 # various header compression formats 204 # various header compression formats
207 205
208 $f->{http_start}('/SayHello'); 206 $f->{http_start}('/SayHello');