comparison lib/Test/Nginx.pm @ 557:05cbe9e2def8

Tests: basic stream tests for upstream least_conn.
author Sergey Kandaurov <pluknet@nginx.com>
date Thu, 23 Apr 2015 14:01:13 +0300
parents 93af034fda47
children f3434de79a7f
comparison
equal deleted inserted replaced
556:97d89d9ab4ed 557:05cbe9e2def8
131 smtp => '(?s)^(?!.*--without-mail_smtp_module)', 131 smtp => '(?s)^(?!.*--without-mail_smtp_module)',
132 pcre => '(?s)^(?!.*--without-pcre)', 132 pcre => '(?s)^(?!.*--without-pcre)',
133 split_clients 133 split_clients
134 => '(?s)^(?!.*--without-http_split_clients_module)', 134 => '(?s)^(?!.*--without-http_split_clients_module)',
135 stream => '--with-stream(?!\S)', 135 stream => '--with-stream(?!\S)',
136 stream_upstream_least_conn
137 => '(?s)^(?!.*--without-stream_upstream_least_conn_m)',
136 ); 138 );
137 139
138 my $re = $regex{$feature}; 140 my $re = $regex{$feature};
139 $re = $feature if !defined $re; 141 $re = $feature if !defined $re;
140 142