From 2d827c065a1c6ed12d48fc71ab41443e2de0936f Mon Sep 17 00:00:00 2001 From: Li-Wen Hsu Date: Tue, 12 Oct 2021 05:40:24 +0800 Subject: [PATCH] Skip sys.net.if_lagg_test.status_stress in CI This case panics the machine fairly often and we should run stress tests separately. Sponsored by: The FreeBSD Foundation --- tests/sys/net/if_lagg_test.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/sys/net/if_lagg_test.sh b/tests/sys/net/if_lagg_test.sh index 1c9cc5551ae..cf1dcd4359c 100755 --- a/tests/sys/net/if_lagg_test.sh +++ b/tests/sys/net/if_lagg_test.sh @@ -84,6 +84,10 @@ status_stress_body() { local TAP0 TAP1 LAGG MAC + if [ "$(atf_config_get ci false)" = "true" ]; then + atf_skip "Skipping this test because it panics the machine fairly often" + fi + # Configure the lagg interface to use an RFC5737 nonrouteable addresses ADDR="192.0.2.2" MASK="24" -- 2.45.0