diff options
author | tb <> | 2025-01-15 10:54:17 +0000 |
---|---|---|
committer | tb <> | 2025-01-15 10:54:17 +0000 |
commit | 5f0eba55ef76d10d214ee6e9720f71139555905b (patch) | |
tree | b4d18eb73941fd86bc3bffedf7d6913942390942 /src/regress/lib/libssl/interop/cert | |
parent | 85b648c5f8603ca38a5239a92436c6d644c7b87b (diff) | |
download | openbsd-5f0eba55ef76d10d214ee6e9720f71139555905b.tar.gz openbsd-5f0eba55ef76d10d214ee6e9720f71139555905b.tar.bz2 openbsd-5f0eba55ef76d10d214ee6e9720f71139555905b.zip |
Interop tests for openssl 3.3 and 3.4, retire 3.2, 1.1 (and 3.1 remnants)
OpenSSL 1.1 and 3.2 will be removed from the ports tree, so test the two
remaining versions. Unfortunately, this requires a lot more manual
massaging than there should be.
Diffstat (limited to 'src/regress/lib/libssl/interop/cert')
-rw-r--r-- | src/regress/lib/libssl/interop/cert/Makefile | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/src/regress/lib/libssl/interop/cert/Makefile b/src/regress/lib/libssl/interop/cert/Makefile index ab35d03d74..74c63c86a8 100644 --- a/src/regress/lib/libssl/interop/cert/Makefile +++ b/src/regress/lib/libssl/interop/cert/Makefile | |||
@@ -1,20 +1,17 @@ | |||
1 | # $OpenBSD: Makefile,v 1.13 2024/08/18 10:02:10 tb Exp $ | 1 | # $OpenBSD: Makefile,v 1.14 2025/01/15 10:54:17 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 3.x. Create client and server certificates |
5 | # that are signed by a CA and not signed by a fake CA. Try all | 5 | # that are signed by a CA and not signed by a fake CA. Try all |
6 | # combinations with, without, and with wrong CA for client and server | 6 | # combinations with, without, and with wrong CA for client and server |
7 | # and check the result of certificate verification. | 7 | # and check the result of certificate verification. |
8 | 8 | ||
9 | LIBRARIES = libressl | 9 | LIBRARIES = libressl |
10 | .if exists(/usr/local/bin/eopenssl11) | 10 | .if exists(/usr/local/bin/eopenssl33) |
11 | LIBRARIES += openssl11 | 11 | LIBRARIES += openssl33 |
12 | .endif | 12 | .endif |
13 | .if exists(/usr/local/bin/eopenssl31) | 13 | .if exists(/usr/local/bin/eopenssl34) |
14 | LIBRARIES += openssl31 | 14 | LIBRARIES += openssl34 |
15 | .endif | ||
16 | .if exists(/usr/local/bin/eopenssl32) | ||
17 | LIBRARIES += openssl32 | ||
18 | .endif | 15 | .endif |
19 | 16 | ||
20 | .for cca in noca ca fakeca | 17 | .for cca in noca ca fakeca |