diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2019-08-22 21:47:28 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2019-08-22 21:47:28 +0000 |
commit | 556a91f396d19123062bab0fb5cd29f0c599d4c4 (patch) | |
tree | 3c712e066f2f3c7ac3577bfaa8c4d7b167688252 /regress/usr.bin | |
parent | 46978ab4a0d42c7f24527ef171a78d6d98b82371 (diff) |
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')
-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} |