mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-08-25 03:38:36 +02:00
unbreak unit tests after removal of src/usr.bin/ssh/lib OpenBSD-Regress-ID: 3a79760494147b20761cbd2bd5c20e86c63dc8f9
23 lines
481 B
Makefile
23 lines
481 B
Makefile
# $OpenBSD: Makefile,v 1.6 2017/12/21 00:41:22 djm Exp $
|
|
|
|
.include <bsd.regress.mk>
|
|
|
|
PROG=test_sshbuf
|
|
SRCS=tests.c
|
|
SRCS+=test_sshbuf.c
|
|
SRCS+=test_sshbuf_getput_basic.c
|
|
SRCS+=test_sshbuf_getput_crypto.c
|
|
SRCS+=test_sshbuf_misc.c
|
|
SRCS+=test_sshbuf_fuzz.c
|
|
SRCS+=test_sshbuf_getput_fuzz.c
|
|
SRCS+=test_sshbuf_fixed.c
|
|
|
|
# From usr.bin/ssh
|
|
SRCS+=sshbuf-getput-basic.c sshbuf-getput-crypto.c sshbuf-misc.c sshbuf.c
|
|
SRCS+=atomicio.c
|
|
|
|
run-regress-${PROG}: ${PROG}
|
|
env ${TEST_ENV} ./${PROG}
|
|
|
|
|