mirror of
https://github.com/opnsense/src.git
synced 2026-02-16 17:19:56 -05:00
tools/regression. It tests a number of aspects of kqueue behavior, although not all currently pass (possibly bugs in the test suite?). Submitted by: Mark Heily <mark at heily.com> Obtained from: svn://mark.heily.com/libkqueue/trunk/test (r114)
21 lines
280 B
Makefile
21 lines
280 B
Makefile
# $FreeBSD$
|
|
#
|
|
# svn://mark.heily.com/libkqueue/trunk/test
|
|
# Last update: r114
|
|
#
|
|
# libkqueue and test suite by Mark Heily <mark@heily.com>
|
|
#
|
|
|
|
PROG=kqtest
|
|
SRCS= \
|
|
main.c \
|
|
read.c \
|
|
timer.c \
|
|
vnode.c \
|
|
proc.c \
|
|
signal.c \
|
|
user.c
|
|
NO_MAN=
|
|
WARNS=2
|
|
|
|
.include "bsd.prog.mk"
|