sync
This commit is contained in:
parent
9e5eddc6af
commit
9e7f51724c
24 changed files with 225 additions and 208 deletions
|
@ -1,4 +1,4 @@
|
|||
# $OpenBSD: Makefile,v 1.124 2023/03/01 09:29:32 dtucker Exp $
|
||||
# $OpenBSD: Makefile,v 1.125 2023/05/17 05:52:01 djm Exp $
|
||||
|
||||
OPENSSL?= yes
|
||||
|
||||
|
@ -13,7 +13,7 @@ REGRESS_SETUP_ONCE=misc # For sk-dummy.so
|
|||
REGRESS_FAIL_EARLY?= yes
|
||||
|
||||
# Key conversion operations are not supported when built w/out OpenSSL.
|
||||
.if ${OPENSSL:L} != no
|
||||
.if !defined(LTESTS_FROM) && ${OPENSSL:L} != no
|
||||
REGRESS_TARGETS= t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 t11 t12
|
||||
.endif
|
||||
|
||||
|
@ -221,8 +221,14 @@ t-${t}: timestamp
|
|||
sh ${.CURDIR}/test-exec.sh ${.OBJDIR} ${.CURDIR}/${t}.sh
|
||||
.endfor
|
||||
|
||||
.undef LTESTS_STARTED
|
||||
.for t in ${LTESTS}
|
||||
.if defined(LTESTS_FROM) && ${LTESTS_FROM} == t-${t}
|
||||
LTESTS_STARTED=yes
|
||||
.endif
|
||||
.if !defined(LTESTS_FROM) || defined(LTESTS_STARTED)
|
||||
REGRESS_TARGETS+=t-${t}
|
||||
.endif
|
||||
.endfor
|
||||
|
||||
.for t in ${INTEROP_TESTS}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue