summaryrefslogtreecommitdiff
path: root/src/regress/lib/libssl/interop/version/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/regress/lib/libssl/interop/version/Makefile')
-rw-r--r--src/regress/lib/libssl/interop/version/Makefile14
1 files changed, 11 insertions, 3 deletions
diff --git a/src/regress/lib/libssl/interop/version/Makefile b/src/regress/lib/libssl/interop/version/Makefile
index 1e0af57a66..9d0ae418ba 100644
--- a/src/regress/lib/libssl/interop/version/Makefile
+++ b/src/regress/lib/libssl/interop/version/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.5 2023/02/01 14:39:09 tb Exp $ 1# $OpenBSD: Makefile,v 1.6 2023/04/19 15:34:23 tb 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.1 or openssl 3.0. Pin client or server to a fixed TLS 4# openssl 1.1 or openssl 3.0. Pin client or server to a fixed TLS
@@ -37,7 +37,8 @@ FAIL_${cver}_${sver} = !
37.if ("${clib}" == "libressl" || "${slib}" == "libressl") 37.if ("${clib}" == "libressl" || "${slib}" == "libressl")
38REGRESS_TARGETS += run-version-client-${clib}-${cver}-server-${slib}-${sver} 38REGRESS_TARGETS += run-version-client-${clib}-${cver}-server-${slib}-${sver}
39.else 39.else
40REGRESS_SLOW_TARGETS += run-version-client-${clib}-${cver}-server-${slib}-${sver} 40# Don't use REGRESS_SLOW_TARGETS since its handling in bsd.regress.mk is slow.
41SLOW_TARGETS += run-version-client-${clib}-${cver}-server-${slib}-${sver}
41.endif 42.endif
42 43
43run-version-client-${clib}-${cver}-server-${slib}-${sver} \ 44run-version-client-${clib}-${cver}-server-${slib}-${sver} \
@@ -65,7 +66,8 @@ server-version-client-${clib}-${cver}-server-${slib}-${sver}.out: \
65.if ("${clib}" == "libressl" || "${slib}" == "libressl") 66.if ("${clib}" == "libressl" || "${slib}" == "libressl")
66REGRESS_TARGETS += check-version-client-${clib}-${cver}-server-${slib}-${sver} 67REGRESS_TARGETS += check-version-client-${clib}-${cver}-server-${slib}-${sver}
67.else 68.else
68REGRESS_SLOW_TARGETS += check-version-client-${clib}-${cver}-server-${slib}-${sver} 69# Don't use REGRESS_SLOW_TARGETS since its handling in bsd.regress.mk is slow.
70SLOW_TARGETS += check-version-client-${clib}-${cver}-server-${slib}-${sver}
69.endif 71.endif
70 72
71check-version-client-${clib}-${cver}-server-${slib}-${sver}: \ 73check-version-client-${clib}-${cver}-server-${slib}-${sver}: \
@@ -98,4 +100,10 @@ check-version-client-${clib}-${cver}-server-${slib}-${sver}: \
98.endfor 100.endfor
99.endfor 101.endfor
100 102
103.include <bsd.own.mk>
104REGRESS_SKIP_SLOW ?= no
105.if ${REGRESS_SKIP_SLOW:L} != "yes"
106REGRESS_TARGETS += ${SLOW_TARGETS}
107.endif
108
101.include <bsd.regress.mk> 109.include <bsd.regress.mk>