The branch main has been updated by markj: URL: https://cgit.FreeBSD.org/src/commit/?id=bc7512cc58af2e8bbe5bbf5ca0059b1daa1da897
commit bc7512cc58af2e8bbe5bbf5ca0059b1daa1da897 Author: Mark Johnston <[email protected]> AuthorDate: 2022-05-25 00:14:10 +0000 Commit: Mark Johnston <[email protected]> CommitDate: 2022-05-25 00:14:10 +0000 kqueue tests: Re-enable kqueue proc tests - Some EVFILT_PROC bugs were fixed around the time that the tests were disabled. - I can't reproduce any failures locally. - Jenkins logs referenced from the PR are gone, so let's re-enable the tests and see whether a problem persists. PR: 233586 MFC after: 2 weeks Sponsored by: The FreeBSD Foundation --- tests/sys/kqueue/libkqueue/kqueue_test.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/sys/kqueue/libkqueue/kqueue_test.sh b/tests/sys/kqueue/libkqueue/kqueue_test.sh index 5fc31a8e1985..3185d826c7dd 100644 --- a/tests/sys/kqueue/libkqueue/kqueue_test.sh +++ b/tests/sys/kqueue/libkqueue/kqueue_test.sh @@ -1,11 +1,8 @@ #!/bin/sh # $FreeBSD$ -# Temporarily disable evfilt_proc tests: https://bugs.freebsd.org/233586 -skip="--no-proc" - i=1 -"$(dirname $0)/kqtest" ${skip} | while read line; do +"$(dirname $0)/kqtest" | while read line; do echo $line | grep -q passed if [ $? -eq 0 ]; then echo "ok - $i $line"
