mirror of
https://github.com/opnsense/src.git
synced 2026-04-24 07:37:25 -04:00
In order to modify libalias for performance, the existing functionality must not change. Enforce this. Reviewed by: kp MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D30307
26 lines
339 B
Makefile
26 lines
339 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PACKAGE= tests
|
|
|
|
TESTSDIR= ${TESTSBASE}/sys/netinet/libalias
|
|
BINDIR= ${TESTSDIR}
|
|
|
|
ATF_TESTS_C+= 1_instance
|
|
|
|
LIBADD+= alias
|
|
|
|
.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
|