diff options
| author | Zhenlei Huang <zlei@FreeBSD.org> | 2026-04-27 19:17:22 +0000 |
|---|---|---|
| committer | Zhenlei Huang <zlei@FreeBSD.org> | 2026-04-27 19:17:22 +0000 |
| commit | afa4648b6a30603faab56b649605a3393eac9986 (patch) | |
| tree | 61135153f186aa1322852332fd3db015b7d4d5e7 | |
| parent | 0988abd52352ae0977cd3e5c10316b7d94e1cac8 (diff) | |
tests: Temporarily skip two testcases
The changes [1] and [2] made to CURRENT introduce races between ifnet
detach and vmove operations. That requires extra effort to fix. They
are not MFCed to stable branches so the latter are not affected.
Temporarily skip two affected tests on CURRENT right now.
[1] 0bf42a0a05b9 bpf: virtualize bpf_iflist
[2] a4d766caf711 bpf: add a crutch to support if_vmove
PR: 292993
Discussed with: kp
| -rwxr-xr-x | tests/sys/net/if_clone_test.sh | 2 | ||||
| -rw-r--r-- | tests/sys/netgraph/eiface_test.sh | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/tests/sys/net/if_clone_test.sh b/tests/sys/net/if_clone_test.sh index d636815175b4..6be14d0332a7 100755 --- a/tests/sys/net/if_clone_test.sh +++ b/tests/sys/net/if_clone_test.sh @@ -104,6 +104,8 @@ epair_destroy_race2_head() } epair_destroy_race2_body() { + atf_skip "Need BPF fix due to (bpf: virtualize bpf_iflist)" + jid=$(jail -ic vnet host.hostname="epair_destroy2" persist path=/) for i in `seq 1 10` diff --git a/tests/sys/netgraph/eiface_test.sh b/tests/sys/netgraph/eiface_test.sh index 442f5c1a71d2..317294bbcf7d 100644 --- a/tests/sys/netgraph/eiface_test.sh +++ b/tests/sys/netgraph/eiface_test.sh @@ -35,6 +35,8 @@ pr292993_head() pr292993_body() { + atf_skip "Need BPF fix due to (bpf: virtualize bpf_iflist)" + vnet_init for i in `seq 1 10` |
