git: 2d827c065a1c - main - Skip sys.net.if_lagg_test.status_stress in CI
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 11 Oct 2021 21:43:20 UTC
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"