755bab6d55
Extend the test suite for libalias(3) to incoming connections. Test the various types of redirections. MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D30408
34 lines
485 B
Makefile
34 lines
485 B
Makefile
# $FreeBSD$
|
|
|
|
PACKAGE= tests
|
|
|
|
TESTSDIR= ${TESTSBASE}/sys/netinet/libalias
|
|
BINDIR= ${TESTSDIR}
|
|
|
|
ATF_TESTS_C+= 1_instance \
|
|
2_natout \
|
|
3_natin \
|
|
|
|
PROGS+= perf
|
|
|
|
LIBADD+= alias
|
|
|
|
SRCS.1_instance=1_instance.c util.c
|
|
SRCS.2_natout= 2_natout.c util.c
|
|
SRCS.3_natin= 3_natin.c util.c
|
|
SRCS.perf= perf.c util.c
|
|
|
|
.include <bsd.test.mk>
|
|
|
|
#
|
|
# Testing during development
|
|
#
|
|
test: all
|
|
cd ${.OBJDIR}; kyua test
|
|
|
|
report:
|
|
cd ${.OBJDIR}; kyua report
|
|
|
|
report-v:
|
|
cd ${.OBJDIR}; kyua report --verbose
|