The branch stable/13 has been updated by markj:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=42ccdf44930fc46f65e8e48ae7c5d82581a6ea6c

commit 42ccdf44930fc46f65e8e48ae7c5d82581a6ea6c
Author:     Mark Johnston <ma...@freebsd.org>
AuthorDate: 2022-05-25 00:14:10 +0000
Commit:     Mark Johnston <ma...@freebsd.org>
CommitDate: 2022-06-08 00:42:15 +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
    Sponsored by:   The FreeBSD Foundation
    
    (cherry picked from commit bc7512cc58af2e8bbe5bbf5ca0059b1daa1da897)
---
 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"

Reply via email to