summaryrefslogtreecommitdiff
path: root/regress/usr.bin
diff options
context:
space:
mode:
authorDamien Miller <djm@cvs.openbsd.org>2020-10-16 14:02:25 +0000
committerDamien Miller <djm@cvs.openbsd.org>2020-10-16 14:02:25 +0000
commit17f24414429951f7f9e659c21736f3e5dac605f3 (patch)
tree5aa8404df4c9ac20b9f76546ae62316935ff77cd /regress/usr.bin
parent2a93fe1ffda0fcbd226157984ac46f297834e323 (diff)
few more things needs match.c and addrmatch.c now that log.c
calls match_pattern_list()
Diffstat (limited to 'regress/usr.bin')
-rw-r--r--regress/usr.bin/ssh/unittests/conversion/Makefile3
-rw-r--r--regress/usr.bin/ssh/unittests/misc/Makefile4
-rw-r--r--regress/usr.bin/ssh/unittests/sshbuf/Makefile3
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}