summaryrefslogtreecommitdiff
path: root/tests/kernel/kqueue/Makefile
diff options
context:
space:
mode:
authorthorpej <thorpej@NetBSD.org>2021-10-23 01:28:33 +0000
committerthorpej <thorpej@NetBSD.org>2021-10-23 01:28:33 +0000
commit3016c134d1ae545990768b62a5efbfd2670376c3 (patch)
tree18b274977010ec48a41189577b30756ce7623c1d /tests/kernel/kqueue/Makefile
parentdcea0062e47db4bc0e87685b53558f7377de481a (diff)
Add support for the EVFILT_EMPTY filter, which is activated when the
write buffer associated with the file descriptor is empty. This is currently implemented only for sockets, and is intended primarily to provide visibility to applications that all previously written data has been acknowledged by the TCP layer on the receiver. Compatible with the same filter in FreeBSD.
Diffstat (limited to 'tests/kernel/kqueue/Makefile')
-rw-r--r--tests/kernel/kqueue/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/kernel/kqueue/Makefile b/tests/kernel/kqueue/Makefile
index 4c4ef4b275c..f3a1a958126 100644
--- a/tests/kernel/kqueue/Makefile
+++ b/tests/kernel/kqueue/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.7 2021/10/13 04:57:19 thorpej Exp $
+# $NetBSD: Makefile,v 1.8 2021/10/23 01:28:33 thorpej Exp $
WARNS?=6
NOMAN= # defined
@@ -10,7 +10,8 @@ TESTSDIR= ${TESTSBASE}/kernel/kqueue
TESTS_SUBDIRS= read
TESTS_SUBDIRS+= write
-TESTS_C= t_ioctl
+TESTS_C= t_empty
+TESTS_C+= t_ioctl
TESTS_C+= t_proc1
TESTS_C+= t_proc2
TESTS_C+= t_proc3