Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 11 Oct 2021 21:43:20 GMT
From:      Li-Wen Hsu <lwhsu@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 2d827c065a1c - main - Skip sys.net.if_lagg_test.status_stress in CI
Message-ID:  <202110112143.19BLhK1x010856@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by lwhsu:

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

commit 2d827c065a1c6ed12d48fc71ab41443e2de0936f
Author:     Li-Wen Hsu <lwhsu@FreeBSD.org>
AuthorDate: 2021-10-11 21:40:24 +0000
Commit:     Li-Wen Hsu <lwhsu@FreeBSD.org>
CommitDate: 2021-10-11 21:40:24 +0000

    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 1c9cc5551ae3..cf1dcd4359ca 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"



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202110112143.19BLhK1x010856>