You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
589 B
22 lines
589 B
# $OpenBSD: Makefile,v 1.8 2020/01/26 00:09:50 djm Exp $
|
|
|
|
# $OpenBSD: Makefile,v 1.8 2020/01/26 00:09:50 djm Exp $
|
|
|
|
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+=sshbuf-io.c atomicio.c misc.c xmalloc.c log.c fatal.c ssherr.c cleanup.c
|
|
|
|
run-regress-${PROG}: ${PROG}
|
|
env ${TEST_ENV} ./${PROG} ${UNITTEST_ARGS}
|
|
|