mirror of
https://github.com/opnsense/src.git
synced 2026-03-01 12:51:07 -05:00
not the old parent. Otherwise, proc_reap() will leave the zombie in place resulting in the process' status being returned twice to its parent. Add test cases for PT_TRACE_ME and PT_ATTACH which are fixed by this change. Differential Revision: https://reviews.freebsd.org/D2594 Reviewed by: kib MFC after: 2 weeks
16 lines
286 B
Makefile
16 lines
286 B
Makefile
# $FreeBSD$
|
|
|
|
TESTSDIR= ${TESTSBASE}/sys/kern
|
|
|
|
ATF_TESTS_C+= kern_descrip_test
|
|
ATF_TESTS_C+= ptrace_test
|
|
ATF_TESTS_C+= unix_seqpacket_test
|
|
TEST_METADATA.unix_seqpacket_test+= timeout="15"
|
|
|
|
LDADD.unix_seqpacket_test+= -lpthread
|
|
|
|
WARNS?= 5
|
|
|
|
TESTS_SUBDIRS+= execve
|
|
|
|
.include <bsd.test.mk>
|