diff options
Diffstat (limited to 'src/regress/lib/libssl/interop/cipher/Makefile')
-rw-r--r-- | src/regress/lib/libssl/interop/cipher/Makefile | 10 |
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 | |||
103 | DHPARAM_${cipher}_${slib} = | 103 | DHPARAM_${cipher}_${slib} = |
104 | .endif | 104 | .endif |
105 | 105 | ||
106 | .if ("${clib}" == "libressl" || "${slib}" == "libressl") | ||
106 | REGRESS_TARGETS += run-cipher-${cipher}-client-${clib}-server-${slib} | 107 | REGRESS_TARGETS += run-cipher-${cipher}-client-${clib}-server-${slib} |
108 | .else | ||
109 | REGRESS_SLOW_TARGETS += run-cipher-${cipher}-client-${clib}-server-${slib} | ||
110 | .endif | ||
107 | run-cipher-${cipher}-client-${clib}-server-${slib} \ | 111 | run-cipher-${cipher}-client-${clib}-server-${slib} \ |
108 | client-cipher-${cipher}-client-${clib}-server-${slib}.out \ | 112 | client-cipher-${cipher}-client-${clib}-server-${slib}.out \ |
109 | server-cipher-${cipher}-client-${clib}-server-${slib}.out: dh.param \ | 113 | server-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") | ||
125 | REGRESS_TARGETS += check-cipher-${cipher}-client-${clib}-server-${slib} | 130 | REGRESS_TARGETS += check-cipher-${cipher}-client-${clib}-server-${slib} |
131 | .else | ||
132 | REGRESS_SLOW_TARGETS += check-cipher-${cipher}-client-${clib}-server-${slib} | ||
133 | .endif | ||
126 | check-cipher-${cipher}-client-${clib}-server-${slib}: \ | 134 | check-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 |