comparison h2_proxy_ssl.t @ 1900:236d038dc04a

Tests: suppress "listen .. http2;" deprecation warnings.
author Sergey Kandaurov <pluknet@nginx.com>
date Wed, 31 May 2023 13:29:34 +0400
parents dbce8fb5f5f8
children 11463d379570
comparison
equal deleted inserted replaced
1899:a0ee073760c5 1900:236d038dc04a
72 . ">>$d/openssl.out 2>&1") == 0 72 . ">>$d/openssl.out 2>&1") == 0
73 or die "Can't create certificate for $name: $!\n"; 73 or die "Can't create certificate for $name: $!\n";
74 } 74 }
75 75
76 $t->write_file('index.html', ''); 76 $t->write_file('index.html', '');
77
78 # suppress deprecation warning
79
80 open OLDERR, ">&", \*STDERR; close STDERR;
77 $t->run(); 81 $t->run();
82 open STDERR, ">&", \*OLDERR;
78 83
79 ############################################################################### 84 ###############################################################################
80 85
81 # request body with an empty DATA frame proxied to ssl backend 86 # request body with an empty DATA frame proxied to ssl backend
82 # "zero size buf in output" alerts seen 87 # "zero size buf in output" alerts seen