summaryrefslogtreecommitdiff
path: root/regress
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2019-11-01 02:06:52 +0000
committerDamien Miller <djm@mindrot.org>2019-11-01 13:10:52 +1100
commitdb8d13f7925da7337df87248995c533e111637ec (patch)
treed1c5ff5f78fd0cab74298585432f08fdca873e0f /regress
parentf89c5df65dd307739ff22319c2cf847d3b0c5ab4 (diff)
upstream: more additional source files
OpenBSD-Regress-ID: 8eaa25fb901594aee23b76eda99dca5b8db94c6f
Diffstat (limited to 'regress')
-rw-r--r--regress/unittests/authopt/Makefile25
1 files changed, 25 insertions, 0 deletions
diff --git a/regress/unittests/authopt/Makefile b/regress/unittests/authopt/Makefile
new file mode 100644
index 000000000..03c34222c
--- /dev/null
+++ b/regress/unittests/authopt/Makefile
@@ -0,0 +1,25 @@
1# $OpenBSD: Makefile,v 1.2 2019/11/01 02:06:52 djm Exp $
2
3PROG=test_authopt
4SRCS=tests.c
5
6SRCS+=auth-options.c
7
8# From usr.bin/ssh
9SRCS+=sshbuf-getput-basic.c sshbuf-getput-crypto.c sshbuf-misc.c sshbuf.c
10SRCS+=atomicio.c sshkey.c authfile.c cipher.c log.c ssh-rsa.c ssh-dss.c
11SRCS+=ssh-ecdsa.c ssh-ed25519.c mac.c umac.c umac128.c hmac.c misc.c
12SRCS+=ssherr.c uidswap.c cleanup.c xmalloc.c match.c krl.c fatal.c
13SRCS+=addrmatch.c bitmap.c
14SRCS+=ed25519.c hash.c ge25519.c fe25519.c sc25519.c verify.c
15SRCS+=cipher-chachapoly.c chacha.c poly1305.c ssh-ecdsa-sk.c ssh-sk.c
16
17SRCS+=digest-openssl.c
18#SRCS+=digest-libc.c
19
20REGRESS_TARGETS=run-regress-${PROG}
21
22run-regress-${PROG}: ${PROG}
23 env ${TEST_ENV} ./${PROG} -d ${.CURDIR}/testdata
24
25.include <bsd.regress.mk>