mirror of
https://github.com/opnsense/src.git
synced 2026-05-22 10:02:00 -04:00
Just invoke the test program directly instead of trying to convert its
output to TAP format. The test suite is all or nothing; there's no way
to enumerate individual test cases, so there's no advantage in trying to
massage its output, and doing so throws away information that's useful
when diagnosing test failures.
Sponsored by: The FreeBSD Foundation
(cherry picked from commit 68fe988a40)
18 lines
286 B
Makefile
18 lines
286 B
Makefile
# $FreeBSD$
|
|
|
|
TESTSDIR= ${TESTSBASE}/sys/kqueue/libkqueue
|
|
BINDIR= ${TESTSDIR}
|
|
|
|
# libkqueue and test suite by Mark Heily <mark@heily.com>
|
|
PLAIN_TESTS_C= kqueue_test
|
|
|
|
SRCS.kqueue_test= \
|
|
main.c \
|
|
read.c \
|
|
timer.c \
|
|
vnode.c \
|
|
proc.c \
|
|
signal.c \
|
|
user.c
|
|
|
|
.include <bsd.test.mk>
|