diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2020-01-25 16:08:26 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2020-01-25 16:08:26 +0000 |
commit | 3534bfb968954807cdd8d00092e889a40a512e35 (patch) | |
tree | 5146fae91f1b2d1f34ed9b9a0a362e35d58e557e /regress/lib | |
parent | 6c709b1170fddbd249a64f42ef3cce6b67fae172 (diff) |
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 'regress/lib')
-rw-r--r-- | regress/lib/libssl/interop/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/regress/lib/libssl/interop/Makefile b/regress/lib/libssl/interop/Makefile index 36b233c189d..0754380d50b 100644 --- a/regress/lib/libssl/interop/Makefile +++ b/regress/lib/libssl/interop/Makefile @@ -1,10 +1,11 @@ -# $OpenBSD: Makefile,v 1.6 2019/02/21 23:06:33 bluhm Exp $ +# $OpenBSD: Makefile,v 1.7 2020/01/25 16:08:25 jsing Exp $ SUBDIR = libressl openssl openssl11 + # the above binaries must have been built before we can continue +#SUBDIR += cert +SUBDIR += cipher SUBDIR += netcat SUBDIR += session -SUBDIR += cipher -SUBDIR += cert .include <bsd.subdir.mk> |