diff options
author | 2020-10-16 14:02:24 +0000 | |
---|---|---|
committer | 2020-10-16 14:02:24 +0000 | |
commit | cb550287166e62c05c2052a45bdf56a9904255b6 (patch) | |
tree | 48d0a87e5abf5443505a2df1e513e9c5500209f0 | |
parent | Display of P2P links has changed (diff) | |
download | wireguard-openbsd-cb550287166e62c05c2052a45bdf56a9904255b6.tar.xz wireguard-openbsd-cb550287166e62c05c2052a45bdf56a9904255b6.zip |
few more things needs match.c and addrmatch.c now that log.c
calls match_pattern_list()
-rw-r--r-- | regress/usr.bin/ssh/unittests/conversion/Makefile | 3 | ||||
-rw-r--r-- | regress/usr.bin/ssh/unittests/misc/Makefile | 4 | ||||
-rw-r--r-- | regress/usr.bin/ssh/unittests/sshbuf/Makefile | 3 |
3 files changed, 7 insertions, 3 deletions
diff --git a/regress/usr.bin/ssh/unittests/conversion/Makefile b/regress/usr.bin/ssh/unittests/conversion/Makefile index 8b2a09cc39f..5ec667bf8c0 100644 --- a/regress/usr.bin/ssh/unittests/conversion/Makefile +++ b/regress/usr.bin/ssh/unittests/conversion/Makefile @@ -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} diff --git a/regress/usr.bin/ssh/unittests/misc/Makefile b/regress/usr.bin/ssh/unittests/misc/Makefile index 0c8ebc7d426..6f0df8ec949 100644 --- a/regress/usr.bin/ssh/unittests/misc/Makefile +++ b/regress/usr.bin/ssh/unittests/misc/Makefile @@ -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 diff --git a/regress/usr.bin/ssh/unittests/sshbuf/Makefile b/regress/usr.bin/ssh/unittests/sshbuf/Makefile index a530a2ee5f1..fb2a6674b38 100644 --- a/regress/usr.bin/ssh/unittests/sshbuf/Makefile +++ b/regress/usr.bin/ssh/unittests/sshbuf/Makefile @@ -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 $ PROG=test_sshbuf SRCS=tests.c @@ -13,6 +13,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} |