opnsense-src/tests/sys/file/Makefile
Enji Cooper 3cedbec3ee Integrate tools/regression/fifo into the FreeBSD test suite as tests/sys/fifo
and tools/regression/file into the FreeBSD test suite as tests/sys/file

MFC after: 1 week
2015-04-27 08:15:17 +00:00

25 lines
509 B
Makefile

# $FreeBSD$
TESTSDIR= ${TESTSBASE}/sys/file
BINDIR= ${TESTSDIR}
TAP_TESTS_C+= closefrom_test
TAP_TESTS_C+= dup_test
TAP_TESTS_C+= fcntlflags_test
TAP_TESTS_SH+= flock_test
PLAIN_TESTS_C+= ftruncate_test
PLAIN_TESTS_C+= newfileops_on_fork_test
PROGS+= flock_helper
DPADD.closefrom_test= ${LIBUTIL}
LDADD.closefrom_test= -lutil
DPADD.flock_helper= ${LIBPTHREAD}
LDADD.flock_helper= -lpthread
DPADD.newfileops_on_fork_test= ${LIBPTHREAD}
LDADD.newfileops_on_fork_test= -lpthread
.include <bsd.test.mk>