git: 83532eb68cd0 - main - tests/sys/net/routing: XFAIL the two failing tests
Alex Richardson
arichardson at FreeBSD.org
Wed Apr 7 10:35:27 UTC 2021
The branch main has been updated by arichardson:
URL: https://cgit.FreeBSD.org/src/commit/?id=83532eb68cd06a3517bb7b5e5a34afcf798de914
commit 83532eb68cd06a3517bb7b5e5a34afcf798de914
Author: Alex Richardson <arichardson at FreeBSD.org>
AuthorDate: 2021-04-07 09:33:21 +0000
Commit: Alex Richardson <arichardson at FreeBSD.org>
CommitDate: 2021-04-07 09:34:22 +0000
tests/sys/net/routing: XFAIL the two failing tests
They have been failing for 1.5 months and the patch to fix them is stuck
in review so mark them as XFAIL for now to get Jenkins back to green.
To be reverted when https://reviews.freebsd.org/D28886 (or similar) is
commited.
Reviewed By: kp
MFC after: 3 days
Differential Revision: https://reviews.freebsd.org/D29528
---
tests/sys/net/routing/test_rtsock_l3.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/tests/sys/net/routing/test_rtsock_l3.c b/tests/sys/net/routing/test_rtsock_l3.c
index 9486ac466965..91816679400f 100644
--- a/tests/sys/net/routing/test_rtsock_l3.c
+++ b/tests/sys/net/routing/test_rtsock_l3.c
@@ -383,6 +383,9 @@ ATF_TC_BODY(rtm_get_v4_hostbits_failure, tc)
{
DECLARE_TEST_VARS;
+ if (atf_tc_get_config_var_as_bool_wd(tc, "ci", false))
+ atf_tc_expect_fail("Needs https://reviews.freebsd.org/D28886");
+
c = presetup_ipv4(tc);
/* Q the same prefix */
@@ -447,6 +450,9 @@ ATF_TC_BODY(rtm_add_v4_no_rtf_host_failure, tc)
{
DECLARE_TEST_VARS;
+ if (atf_tc_get_config_var_as_bool_wd(tc, "ci", false))
+ atf_tc_expect_fail("Needs https://reviews.freebsd.org/D28886");
+
c = presetup_ipv4(tc);
/* Create IPv4 subnetwork with smaller prefix */
More information about the dev-commits-src-main
mailing list