mirror of
https://github.com/opnsense/src.git
synced 2026-04-03 16:35:27 -04:00
Reviewed by: kib MFC after: 2 weeks Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D29719
23 lines
418 B
Makefile
23 lines
418 B
Makefile
# $FreeBSD$
|
|
|
|
TESTSDIR= ${TESTSBASE}/sys/file
|
|
|
|
BINDIR= ${TESTSDIR}
|
|
|
|
ATF_TESTS_C+= path_test
|
|
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
|
|
|
|
LIBADD.closefrom_test= util
|
|
|
|
LIBADD.flock_helper= pthread
|
|
|
|
LIBADD.newfileops_on_fork_test= pthread
|
|
|
|
.include <bsd.test.mk>
|