summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2023-02-01 16:03:47 +0000
committertb <>2023-02-01 16:03:47 +0000
commit673d50eba3176c2ef4c67914008e191ed568f373 (patch)
treea787471a964b9ba5e5f67457a6ea5041b9c56d24
parent13d88a87def8c792a063ae09a359720d6d20c38e (diff)
downloadopenbsd-673d50eba3176c2ef4c67914008e191ed568f373.tar.gz
openbsd-673d50eba3176c2ef4c67914008e191ed568f373.tar.bz2
openbsd-673d50eba3176c2ef4c67914008e191ed568f373.zip
Don't run session tests with openssl 3.0 - these tests aren't TLSv1.3 ready
-rw-r--r--src/regress/lib/libssl/interop/session/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regress/lib/libssl/interop/session/Makefile b/src/regress/lib/libssl/interop/session/Makefile
index 8a15393be5..f5858eaba0 100644
--- a/src/regress/lib/libssl/interop/session/Makefile
+++ b/src/regress/lib/libssl/interop/session/Makefile
@@ -1,11 +1,11 @@
1# $OpenBSD: Makefile,v 1.7 2023/02/01 15:59:50 tb Exp $ 1# $OpenBSD: Makefile,v 1.8 2023/02/01 16:03:47 tb Exp $
2 2
3LIBRARIES = libressl 3LIBRARIES = libressl
4.if exists(/usr/local/bin/eopenssl11) 4.if exists(/usr/local/bin/eopenssl11)
5LIBRARIES += openssl11 5LIBRARIES += openssl11
6.endif 6.endif
7.if exists(/usr/local/bin/eopenssl30) 7.if exists(/usr/local/bin/eopenssl30)
8LIBRARIES += openssl30 8#LIBRARIES += openssl30
9.endif 9.endif
10 10
11run-session-client-libressl-server-libressl \ 11run-session-client-libressl-server-libressl \