diff options
Diffstat (limited to 'regress/unittests/authopt')
-rw-r--r-- | regress/unittests/authopt/Makefile | 25 |
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 | |||
3 | PROG=test_authopt | ||
4 | SRCS=tests.c | ||
5 | |||
6 | SRCS+=auth-options.c | ||
7 | |||
8 | # From usr.bin/ssh | ||
9 | SRCS+=sshbuf-getput-basic.c sshbuf-getput-crypto.c sshbuf-misc.c sshbuf.c | ||
10 | SRCS+=atomicio.c sshkey.c authfile.c cipher.c log.c ssh-rsa.c ssh-dss.c | ||
11 | SRCS+=ssh-ecdsa.c ssh-ed25519.c mac.c umac.c umac128.c hmac.c misc.c | ||
12 | SRCS+=ssherr.c uidswap.c cleanup.c xmalloc.c match.c krl.c fatal.c | ||
13 | SRCS+=addrmatch.c bitmap.c | ||
14 | SRCS+=ed25519.c hash.c ge25519.c fe25519.c sc25519.c verify.c | ||
15 | SRCS+=cipher-chachapoly.c chacha.c poly1305.c ssh-ecdsa-sk.c ssh-sk.c | ||
16 | |||
17 | SRCS+=digest-openssl.c | ||
18 | #SRCS+=digest-libc.c | ||
19 | |||
20 | REGRESS_TARGETS=run-regress-${PROG} | ||
21 | |||
22 | run-regress-${PROG}: ${PROG} | ||
23 | env ${TEST_ENV} ./${PROG} -d ${.CURDIR}/testdata | ||
24 | |||
25 | .include <bsd.regress.mk> | ||