diff options
Diffstat (limited to 'src/regress/lib/libssl/interop/cert/Makefile')
-rw-r--r-- | src/regress/lib/libssl/interop/cert/Makefile | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/regress/lib/libssl/interop/cert/Makefile b/src/regress/lib/libssl/interop/cert/Makefile index 32b7a4f4f1..47f4422d6e 100644 --- a/src/regress/lib/libssl/interop/cert/Makefile +++ b/src/regress/lib/libssl/interop/cert/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.9 2023/02/01 14:39:09 tb Exp $ | 1 | # $OpenBSD: Makefile,v 1.10 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 3.0. Create client and server certificates | 4 | # openssl 1.1 or 3.0. Create client and server certificates |
@@ -39,7 +39,8 @@ FAIL_${cca}_${sca}_${ccert}_${scert}_${cv}_${sv} = ! | |||
39 | .if ("${clib}" == "libressl" || "${slib}" == "libressl") | 39 | .if ("${clib}" == "libressl" || "${slib}" == "libressl") |
40 | REGRESS_TARGETS += run-cert-client-${clib}-${cca}-${ccert}-${cv}-server-${slib}-${sca}-${scert}-${sv} | 40 | REGRESS_TARGETS += run-cert-client-${clib}-${cca}-${ccert}-${cv}-server-${slib}-${sca}-${scert}-${sv} |
41 | .else | 41 | .else |
42 | REGRESS_SLOW_TARGETS += run-cert-client-${clib}-${cca}-${ccert}-${cv}-server-${slib}-${sca}-${scert}-${sv} | 42 | # Don't use REGRESS_SLOW_TARGETS since its handling in bsd.regress.mk is slow. |
43 | SLOW_TARGETS += run-cert-client-${clib}-${cca}-${ccert}-${cv}-server-${slib}-${sca}-${scert}-${sv} | ||
43 | .endif | 44 | .endif |
44 | 45 | ||
45 | run-cert-client-${clib}-${cca}-${ccert}-${cv}-server-${slib}-${sca}-${scert}-${sv}: \ | 46 | run-cert-client-${clib}-${cca}-${ccert}-${cv}-server-${slib}-${sca}-${scert}-${sv}: \ |
@@ -76,6 +77,12 @@ run-cert-client-${clib}-${cca}-${ccert}-${cv}-server-${slib}-${sca}-${scert}-${s | |||
76 | .endfor | 77 | .endfor |
77 | .endfor | 78 | .endfor |
78 | 79 | ||
80 | .include <bsd.own.mk> | ||
81 | REGRESS_SKIP_SLOW ?= no | ||
82 | .if ${REGRESS_SKIP_SLOW:L} != "yes" | ||
83 | REGRESS_TARGETS += ${SLOW_TARGETS} | ||
84 | .endif | ||
85 | |||
79 | REGRESS_TARGETS += run-bob | 86 | REGRESS_TARGETS += run-bob |
80 | run-bob: | 87 | run-bob: |
81 | @echo Bob, be happy! Tests finished. | 88 | @echo Bob, be happy! Tests finished. |