This is being done to clearly distinguish the libkqueue tests from the (soon to be imported) NetBSD tests. MFC after: 58 days Sponsored by: EMC / Isilon Storage Division
22 lines
306 B
Makefile
22 lines
306 B
Makefile
# $FreeBSD$
|
|
|
|
TESTSDIR= ${TESTSBASE}/sys/kqueue/libkqueue
|
|
BINDIR= ${TESTSDIR}
|
|
|
|
# libkqueue and test suite by Mark Heily <mark@heily.com>
|
|
TAP_TESTS_SH= kqueue_test
|
|
|
|
PROGS= kqtest
|
|
|
|
SRCS.kqtest= \
|
|
main.c \
|
|
read.c \
|
|
timer.c \
|
|
vnode.c \
|
|
proc.c \
|
|
signal.c \
|
|
user.c
|
|
WARNS?= 2
|
|
|
|
.include <bsd.test.mk>
|