b236bcf168
Rename all of the TAP test applications from <test> to <test>_test to match the convention described in the TestSuite wiki page Phabric: D538 Approved by: jmmv (mentor) Sponsored by: EMC / Isilon Storage Division
18 lines
307 B
Makefile
18 lines
307 B
Makefile
# $FreeBSD$
|
|
|
|
TESTSDIR= ${TESTSBASE}/lib/libnv
|
|
|
|
TAP_TESTS_C+= nvlist_add_test
|
|
TAP_TESTS_C+= nvlist_exists_test
|
|
TAP_TESTS_C+= nvlist_free_test
|
|
TAP_TESTS_C+= nvlist_get_test
|
|
TAP_TESTS_C+= nvlist_move_test
|
|
TAP_TESTS_C+= nvlist_send_recv_test
|
|
|
|
DPADD+= ${LIBNV}
|
|
LDADD+= -lnv
|
|
|
|
WARNS?= 6
|
|
|
|
.include <bsd.test.mk>
|