summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjsing <>2020-01-25 16:08:25 +0000
committerjsing <>2020-01-25 16:08:25 +0000
commit56946132136f68c15473210cddc908c241274b83 (patch)
tree0b7b3fcae503954bc6ea6b0e3dbc51622df268ef /src
parentc8f22637e2e0244253a8ef175e56c99345346a71 (diff)
downloadopenbsd-56946132136f68c15473210cddc908c241274b83.tar.gz
openbsd-56946132136f68c15473210cddc908c241274b83.tar.bz2
openbsd-56946132136f68c15473210cddc908c241274b83.zip
Disable the cipher interop tests.
These make far too many assumptions about cipher suites - TLSv1.3 cipher suites can only be used with TLSv1.3 and there is tests using TLSv1.3 cipher suites with TLSv1.2 will not work. Likewise, expecting TLSv1.2 cipher suites to work with TLSv1.3 is futile. Additionally, eopenssl11 lists TLSv1.3 cipher suites with different names to libressl. Futher work will be necessary before this can be re-enabled.
Diffstat (limited to 'src')
-rw-r--r--src/regress/lib/libssl/interop/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/regress/lib/libssl/interop/Makefile b/src/regress/lib/libssl/interop/Makefile
index 36b233c189..0754380d50 100644
--- a/src/regress/lib/libssl/interop/Makefile
+++ b/src/regress/lib/libssl/interop/Makefile
@@ -1,10 +1,11 @@
1# $OpenBSD: Makefile,v 1.6 2019/02/21 23:06:33 bluhm Exp $ 1# $OpenBSD: Makefile,v 1.7 2020/01/25 16:08:25 jsing Exp $
2 2
3SUBDIR = libressl openssl openssl11 3SUBDIR = libressl openssl openssl11
4
4# the above binaries must have been built before we can continue 5# the above binaries must have been built before we can continue
6#SUBDIR += cert
7SUBDIR += cipher
5SUBDIR += netcat 8SUBDIR += netcat
6SUBDIR += session 9SUBDIR += session
7SUBDIR += cipher
8SUBDIR += cert
9 10
10.include <bsd.subdir.mk> 11.include <bsd.subdir.mk>