summaryrefslogtreecommitdiff
path: root/tests/kernel/kqueue/Makefile
diff options
context:
space:
mode:
authorthorpej <thorpej@NetBSD.org>2021-10-23 18:46:26 +0000
committerthorpej <thorpej@NetBSD.org>2021-10-23 18:46:26 +0000
commit7995f7295e4d852efb907d147efaf405d937fcce (patch)
treed22c53e7a6509f6e4d58d0ae5735f2b61a5aa2a8 /tests/kernel/kqueue/Makefile
parent4e9193fe8ff1a06a048493035baee717fe845a20 (diff)
Fix a regression introduced in kern_event.c,v 1.129 that would cause
"udata" to get clobbered on ONESHOT events, and add a unit test for it. Reported by martin@ (manifested in his case as a KASSERT() firing when running unit tests in COMPAT_NETBSD32).
Diffstat (limited to 'tests/kernel/kqueue/Makefile')
-rw-r--r--tests/kernel/kqueue/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/kernel/kqueue/Makefile b/tests/kernel/kqueue/Makefile
index f3a1a958126..b353babfe43 100644
--- a/tests/kernel/kqueue/Makefile
+++ b/tests/kernel/kqueue/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.8 2021/10/23 01:28:33 thorpej Exp $
+# $NetBSD: Makefile,v 1.9 2021/10/23 18:46:26 thorpej Exp $
WARNS?=6
NOMAN= # defined
@@ -12,6 +12,7 @@ TESTS_SUBDIRS+= write
TESTS_C= t_empty
TESTS_C+= t_ioctl
+TESTS_C+= t_oneshot
TESTS_C+= t_proc1
TESTS_C+= t_proc2
TESTS_C+= t_proc3