git: ee231b27fff9 - main - Also skip sys/net/if_lagg_test:witness on non-i386

Alex Richardson arichardson at FreeBSD.org
Fri Mar 19 18:39:50 UTC 2021


The branch main has been updated by arichardson:

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

commit ee231b27fff9d6950bf36a9800c02f6474b53139
Author:     Alex Richardson <arichardson at FreeBSD.org>
AuthorDate: 2021-03-19 18:35:04 +0000
Commit:     Alex Richardson <arichardson at FreeBSD.org>
CommitDate: 2021-03-19 18:35:06 +0000

    Also skip sys/net/if_lagg_test:witness on non-i386
    
    The LOR also happens on amd64 and other architectures. Ideally we would
    fix this. However, in order to get Jenkins green again to catch real
    regressions, we should skip this test for now.
    
    PR:             251726
    Reviewed By:    lwhsu
    Differential Revision: https://reviews.freebsd.org/D29341
---
 tests/sys/net/if_lagg_test.sh | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/tests/sys/net/if_lagg_test.sh b/tests/sys/net/if_lagg_test.sh
index 8d06e761db53..5aed9fd7c61b 100755
--- a/tests/sys/net/if_lagg_test.sh
+++ b/tests/sys/net/if_lagg_test.sh
@@ -403,8 +403,7 @@ witness_head()
 witness_body()
 {
 	if [ "$(atf_config_get ci false)" = "true" ] && \
-		[ "$(uname -p)" = "i386" ]; then
-		atf_skip "https://bugs.freebsd.org/244163"
+		atf_skip "https://bugs.freebsd.org/244163 and https://bugs.freebsd.org/251726"
 	fi
 	if [ `sysctl -n debug.witness.watch` -ne 1 ]; then
 		atf_skip "witness(4) is not enabled"


More information about the dev-commits-src-all mailing list