summaryrefslogtreecommitdiff
path: root/src/regress/lib/libssl/interop/cipher/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/regress/lib/libssl/interop/cipher/Makefile')
-rw-r--r--src/regress/lib/libssl/interop/cipher/Makefile10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/regress/lib/libssl/interop/cipher/Makefile b/src/regress/lib/libssl/interop/cipher/Makefile
index 4ad2dbe39b..fe74901d11 100644
--- a/src/regress/lib/libssl/interop/cipher/Makefile
+++ b/src/regress/lib/libssl/interop/cipher/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.5 2020/09/12 15:48:30 bluhm Exp $ 1# $OpenBSD: Makefile,v 1.6 2020/09/21 15:13:24 beck 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.0.2, or openssl 1.1. Create lists of supported ciphers 4# openssl 1.0.2, or openssl 1.1. Create lists of supported ciphers
@@ -103,7 +103,11 @@ DHPARAM_${cipher}_${slib} = -p dh.param
103DHPARAM_${cipher}_${slib} = 103DHPARAM_${cipher}_${slib} =
104.endif 104.endif
105 105
106.if ("${clib}" == "libressl" || "${slib}" == "libressl")
106REGRESS_TARGETS += run-cipher-${cipher}-client-${clib}-server-${slib} 107REGRESS_TARGETS += run-cipher-${cipher}-client-${clib}-server-${slib}
108.else
109REGRESS_SLOW_TARGETS += run-cipher-${cipher}-client-${clib}-server-${slib}
110.endif
107run-cipher-${cipher}-client-${clib}-server-${slib} \ 111run-cipher-${cipher}-client-${clib}-server-${slib} \
108client-cipher-${cipher}-client-${clib}-server-${slib}.out \ 112client-cipher-${cipher}-client-${clib}-server-${slib}.out \
109server-cipher-${cipher}-client-${clib}-server-${slib}.out: dh.param \ 113server-cipher-${cipher}-client-${clib}-server-${slib}.out: dh.param \
@@ -122,7 +126,11 @@ server-cipher-${cipher}-client-${clib}-server-${slib}.out: dh.param \
122 { sleep 1; grep -q '^success$$' ${@:S/^run/server/}.out; } 126 { sleep 1; grep -q '^success$$' ${@:S/^run/server/}.out; }
123 grep -q '^success$$' ${@:S/^run/client/}.out 127 grep -q '^success$$' ${@:S/^run/client/}.out
124 128
129.if ("${clib}" == "libressl" || "${slib}" == "libressl")
125REGRESS_TARGETS += check-cipher-${cipher}-client-${clib}-server-${slib} 130REGRESS_TARGETS += check-cipher-${cipher}-client-${clib}-server-${slib}
131.else
132REGRESS_SLOW_TARGETS += check-cipher-${cipher}-client-${clib}-server-${slib}
133.endif
126check-cipher-${cipher}-client-${clib}-server-${slib}: \ 134check-cipher-${cipher}-client-${clib}-server-${slib}: \
127 client-cipher-${cipher}-client-${clib}-server-${slib}.out \ 135 client-cipher-${cipher}-client-${clib}-server-${slib}.out \
128 server-cipher-${cipher}-client-${clib}-server-${slib}.out 136 server-cipher-${cipher}-client-${clib}-server-${slib}.out