upstream: few more things needs match.c and addrmatch.c now that
log.c calls match_pattern_list() OpenBSD-Regress-ID: f7c95c76b150d0aeb00a67858b9579b7d1b2db74
This commit is contained in:
parent
2c64f24e27
commit
bf7eb3c266
|
@ -1,4 +1,4 @@
|
|||
# $OpenBSD: Makefile,v 1.2 2017/12/21 00:41:22 djm Exp $
|
||||
# $OpenBSD: Makefile,v 1.3 2020/10/16 14:02:24 djm Exp $
|
||||
|
||||
PROG=test_conversion
|
||||
SRCS=tests.c
|
||||
|
@ -6,6 +6,7 @@ SRCS=tests.c
|
|||
# From usr.bin/ssh
|
||||
SRCS+=sshbuf-getput-basic.c sshbuf-getput-crypto.c sshbuf-misc.c sshbuf.c
|
||||
SRCS+=atomicio.c misc.c xmalloc.c log.c uidswap.c cleanup.c fatal.c ssherr.c
|
||||
SRCS+=match.c addrmatch.c
|
||||
|
||||
REGRESS_TARGETS=run-regress-${PROG}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $OpenBSD: Makefile,v 1.2 2019/08/22 21:47:27 bluhm Exp $
|
||||
# $OpenBSD: Makefile,v 1.3 2020/10/16 14:02:24 djm Exp $
|
||||
|
||||
PROG=test_misc
|
||||
SRCS=tests.c
|
||||
|
@ -11,6 +11,8 @@ SRCS+= ssherr.c
|
|||
SRCS+= log.c
|
||||
SRCS+= xmalloc.c
|
||||
SRCS+= misc.c
|
||||
SRCS+= match.c
|
||||
SRCS+= addrmatch.c
|
||||
|
||||
# From usr.bin/ssh/sshd/Makefile
|
||||
SRCS+= atomicio.c cleanup.c fatal.c
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $OpenBSD: Makefile,v 1.8 2020/01/26 00:09:50 djm Exp $
|
||||
# $OpenBSD: Makefile,v 1.9 2020/10/16 14:02:24 djm Exp $
|
||||
|
||||
# $OpenBSD: Makefile,v 1.8 2020/01/26 00:09:50 djm Exp $
|
||||
|
||||
|
@ -15,6 +15,7 @@ SRCS+=test_sshbuf_fixed.c
|
|||
# From usr.bin/ssh
|
||||
SRCS+=sshbuf-getput-basic.c sshbuf-getput-crypto.c sshbuf-misc.c sshbuf.c
|
||||
SRCS+=sshbuf-io.c atomicio.c misc.c xmalloc.c log.c fatal.c ssherr.c cleanup.c
|
||||
SRCS+=match.c addrmatch.c
|
||||
|
||||
run-regress-${PROG}: ${PROG}
|
||||
env ${TEST_ENV} ./${PROG} ${UNITTEST_ARGS}
|
||||
|
|
Loading…
Reference in New Issue