diff options
author | 2020-05-19 13:50:09 +0000 | |
---|---|---|
committer | 2020-05-19 13:50:09 +0000 | |
commit | 24b53247e308e1d2a0bf994b15669b3357f9b9dc (patch) | |
tree | ba84924ee75477aa171e7871db23fed2b82283ce | |
parent | Shave of some leftovers from snmpd's MIB initialization that are not needed (diff) | |
download | wireguard-openbsd-24b53247e308e1d2a0bf994b15669b3357f9b9dc.tar.xz wireguard-openbsd-24b53247e308e1d2a0bf994b15669b3357f9b9dc.zip |
Add -status and -servername test for s_server and s_client in appstest.sh
-rwxr-xr-x | regress/usr.bin/openssl/appstest.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/regress/usr.bin/openssl/appstest.sh b/regress/usr.bin/openssl/appstest.sh index b780c27e901..e4d2e2c5afd 100755 --- a/regress/usr.bin/openssl/appstest.sh +++ b/regress/usr.bin/openssl/appstest.sh @@ -1,6 +1,6 @@ #!/bin/sh # -# $OpenBSD: appstest.sh,v 1.43 2020/05/19 12:08:39 inoguchi Exp $ +# $OpenBSD: appstest.sh,v 1.44 2020/05/19 13:50:09 inoguchi Exp $ # # Copyright (c) 2016 Kinichiro Inoguchi <inoguchi@openbsd.org> # @@ -1605,6 +1605,7 @@ function test_sc_verify { sleep $test_pause_sec $c_bin s_client -connect $host:$port -CAfile $ca_cert \ -$ver -showcerts -crl_check -issuer_checks -policy_check \ + -status -servername xyz \ -msg -tlsextdebug < /dev/null > $s_client_out 2>&1 check_exit_status $? @@ -1707,6 +1708,7 @@ function test_server_client { -context "appstest.sh" -id_prefix "APPSTEST.SH" -crl_check \ -alpn "http/1.1,spdy/3" -www -cipher ALL $extra_opts \ -msg -tlsextdebug -verify 3 -groups X25519:P-384:P-256 \ + -status -servername xyz -cert2 $crt -key2 $key \ > $s_server_out 2>&1 & check_exit_status $? s_server_pid=$! |