mirror of
https://github.com/opnsense/src.git
synced 2026-02-16 00:58:21 -05:00
lib/libc/tests/nss
- Convert the testcases to ATF
- Do some style(9) cleanups:
-- Sort headers
-- Apply indentation fixes
-- Remove superfluous parentheses
- Explicitly print out debug printfs for use with `kyua {debug,report}`; for
items that were overly noisy, they've been put behind #ifdef DEBUG
conditionals
- Fix some format strings
MFC after: 1 week
Sponsored by: EMC / Isilon Storage Division
22 lines
434 B
Makefile
22 lines
434 B
Makefile
# $FreeBSD$
|
|
|
|
TESTSDIR= ${TESTSBASE}/lib/libc/nss
|
|
BINDIR= ${TESTSDIR}
|
|
|
|
.PATH: ${.CURDIR:H}/resolv
|
|
|
|
FILES+= mach
|
|
|
|
CFLAGS+= -I${SRCTOP}/tests
|
|
|
|
ATF_TESTS_C+= getaddrinfo_test
|
|
ATF_TESTS_C+= getgr_test
|
|
ATF_TESTS_C+= gethostby_test
|
|
TEST_METADATA.gethostby_test= timeout="1200"
|
|
ATF_TESTS_C+= getpw_test
|
|
ATF_TESTS_C+= getproto_test
|
|
ATF_TESTS_C+= getrpc_test
|
|
ATF_TESTS_C+= getserv_test
|
|
ATF_TESTS_C+= getusershell_test
|
|
|
|
.include <bsd.test.mk>
|