Skip to content

Commit 8476dbd

Browse files
authored
Merge pull request #1703 from chobits/master
openssl async: fix test case
2 parents 6c5c1f4 + d61c297 commit 8476dbd

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ jobs:
4646
./configure \
4747
--with-ld-opt="-Wl,-rpath,/usr/local/lib" \
4848
--with-ipv6 \
49+
--with-openssl-async \
4950
--with-http_ssl_module \
5051
--with-http_v2_module \
5152
--with-http_addition_module \

auto/options

+1-1
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ cat << END
627627

628628
--with-openssl=DIR set path to OpenSSL library sources
629629
--with-openssl-opt=OPTIONS set additional build options for OpenSSL
630-
630+
--with-openssl-async enable asynchronous SSL/TLS mode for OpenSSL library
631631
--with-debug enable debug logging
632632

633633
END

tests/nginx-tests/nginx-tests/http_ssl_asynchronous_mode.t renamed to tests/nginx-tests/tengine-tests/http_ssl_asynchronous_mode.t

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ eval {
2525
require IO::Socket::SSL;
2626
};
2727

28-
my $t = Test::Nginx->new()->has(qw/http http_ssl/)
28+
my $t = Test::Nginx->new()->has(qw/http http_ssl openssl-async/)
2929
->has_daemon('openssl');
3030

3131
$t->plan(2)->write_file_expand('nginx.conf', <<'EOF');

0 commit comments

Comments
 (0)