diff options
author | 2019-08-22 21:47:27 +0000 | |
---|---|---|
committer | 2019-08-22 21:47:27 +0000 | |
commit | 9f57e42b5520454f7a8547ca98cf1f0b67c4dd75 (patch) | |
tree | 77ea4b9e53bd9f2f49f895ab39a00109b969fd0d /regress/usr.bin/ssh/unittests | |
parent | Define the new verbose variable also in the regression sources so (diff) | |
download | wireguard-openbsd-9f57e42b5520454f7a8547ca98cf1f0b67c4dd75.tar.xz wireguard-openbsd-9f57e42b5520454f7a8547ca98cf1f0b67c4dd75.zip |
Test did not compile due to missing symbols. Add source sshbuf-misc.c
to regress as it was done in ssh make file.
from Moritz Buhl
Diffstat (limited to 'regress/usr.bin/ssh/unittests')
-rw-r--r-- | regress/usr.bin/ssh/unittests/misc/Makefile | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/regress/usr.bin/ssh/unittests/misc/Makefile b/regress/usr.bin/ssh/unittests/misc/Makefile index 06e954cb8ee..0c8ebc7d426 100644 --- a/regress/usr.bin/ssh/unittests/misc/Makefile +++ b/regress/usr.bin/ssh/unittests/misc/Makefile @@ -1,12 +1,19 @@ -# $OpenBSD: Makefile,v 1.1 2019/04/28 22:53:26 dtucker Exp $ +# $OpenBSD: Makefile,v 1.2 2019/08/22 21:47:27 bluhm Exp $ PROG=test_misc SRCS=tests.c # From usr.bin/ssh/Makefile.inc -SRCS+=sshbuf.c sshbuf-getput-basic.c ssherr.c log.c xmalloc.c misc.c -# From usr/bin/ssh/sshd/Makefile -SRCS+=atomicio.c cleanup.c fatal.c +SRCS+= sshbuf.c +SRCS+= sshbuf-getput-basic.c +SRCS+= sshbuf-misc.c +SRCS+= ssherr.c +SRCS+= log.c +SRCS+= xmalloc.c +SRCS+= misc.c + +# From usr.bin/ssh/sshd/Makefile +SRCS+= atomicio.c cleanup.c fatal.c REGRESS_TARGETS=run-regress-${PROG} |