comparison lib/Test/Nginx.pm @ 1350:fda743e92b31

Tests: upstream random tests.
author Sergey Kandaurov <pluknet@nginx.com>
date Fri, 15 Jun 2018 13:59:08 +0300
parents 58fdd9515f81
children a328109be893
comparison
equal deleted inserted replaced
1349:99a83f7e7755 1350:fda743e92b31
153 => '(?s)^(?!.*--without-http_upstream_hash_module)', 153 => '(?s)^(?!.*--without-http_upstream_hash_module)',
154 upstream_ip_hash 154 upstream_ip_hash
155 => '(?s)^(?!.*--without-http_upstream_ip_hash_module)', 155 => '(?s)^(?!.*--without-http_upstream_ip_hash_module)',
156 upstream_least_conn 156 upstream_least_conn
157 => '(?s)^(?!.*--without-http_upstream_least_conn_mod)', 157 => '(?s)^(?!.*--without-http_upstream_least_conn_mod)',
158 upstream_random
159 => '(?s)^(?!.*--without-http_upstream_random_module)',
158 upstream_keepalive 160 upstream_keepalive
159 => '(?s)^(?!.*--without-http_upstream_keepalive_modu)', 161 => '(?s)^(?!.*--without-http_upstream_keepalive_modu)',
160 upstream_zone 162 upstream_zone
161 => '(?s)^(?!.*--without-http_upstream_zone_module)', 163 => '(?s)^(?!.*--without-http_upstream_zone_module)',
162 http => '(?s)^(?!.*--without-http(?!\S))', 164 http => '(?s)^(?!.*--without-http(?!\S))',
184 => '--with-stream_ssl_module', 186 => '--with-stream_ssl_module',
185 stream_upstream_hash 187 stream_upstream_hash
186 => '(?s)^(?!.*--without-stream_upstream_hash_module)', 188 => '(?s)^(?!.*--without-stream_upstream_hash_module)',
187 stream_upstream_least_conn 189 stream_upstream_least_conn
188 => '(?s)^(?!.*--without-stream_upstream_least_conn_m)', 190 => '(?s)^(?!.*--without-stream_upstream_least_conn_m)',
191 stream_upstream_random
192 => '(?s)^(?!.*--without-stream_upstream_random_modul)',
189 stream_upstream_zone 193 stream_upstream_zone
190 => '(?s)^(?!.*--without-stream_upstream_zone_module)', 194 => '(?s)^(?!.*--without-stream_upstream_zone_module)',
191 ); 195 );
192 196
193 my $re = $regex{$feature}; 197 my $re = $regex{$feature};