diff options
author | tb <> | 2023-10-30 17:15:21 +0000 |
---|---|---|
committer | tb <> | 2023-10-30 17:15:21 +0000 |
commit | bc08093d61a7c129c8e10c0201e9f3ab3167593f (patch) | |
tree | c5fce117c872d075f932d494bd786f9804e73c8c /src/regress/lib/libssl/interop/cert | |
parent | e961968230ef9656870099b75ce61f5a340c5b06 (diff) | |
download | openbsd-bc08093d61a7c129c8e10c0201e9f3ab3167593f.tar.gz openbsd-bc08093d61a7c129c8e10c0201e9f3ab3167593f.tar.bz2 openbsd-bc08093d61a7c129c8e10c0201e9f3ab3167593f.zip |
Add support for OpenSSL 3.1 interop tests
Until OpenSSL 3.1 has replaced OpenSSL 3.0 on most architectures, run
both tests. Installed packages of OpenSSL 3.0 will update automatically
to 3.1, so regress runners should not need to do anything.
Diffstat (limited to 'src/regress/lib/libssl/interop/cert')
-rw-r--r-- | src/regress/lib/libssl/interop/cert/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/regress/lib/libssl/interop/cert/Makefile b/src/regress/lib/libssl/interop/cert/Makefile index 47f4422d6e..ae755be223 100644 --- a/src/regress/lib/libssl/interop/cert/Makefile +++ b/src/regress/lib/libssl/interop/cert/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.10 2023/04/19 15:34:23 tb Exp $ | 1 | # $OpenBSD: Makefile,v 1.11 2023/10/30 17:15:21 tb Exp $ |
2 | 2 | ||
3 | # Connect a client to a server. Both can be current libressl, or | 3 | # Connect a client to a server. Both can be current libressl, or |
4 | # openssl 1.1 or 3.0. Create client and server certificates | 4 | # openssl 1.1 or 3.0. Create client and server certificates |
@@ -13,6 +13,9 @@ LIBRARIES += openssl11 | |||
13 | .if exists(/usr/local/bin/eopenssl30) | 13 | .if exists(/usr/local/bin/eopenssl30) |
14 | LIBRARIES += openssl30 | 14 | LIBRARIES += openssl30 |
15 | .endif | 15 | .endif |
16 | .if exists(/usr/local/bin/eopenssl31) | ||
17 | LIBRARIES += openssl31 | ||
18 | .endif | ||
16 | 19 | ||
17 | .for cca in noca ca fakeca | 20 | .for cca in noca ca fakeca |
18 | .for sca in noca ca fakeca | 21 | .for sca in noca ca fakeca |