Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 7 Apr 2021 10:35:26 GMT
From:      Alex Richardson <arichardson@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 83532eb68cd0 - main - tests/sys/net/routing: XFAIL the two failing tests
Message-ID:  <202104071035.137AZQEm019690@gitrepo.freebsd.org>

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

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

commit 83532eb68cd06a3517bb7b5e5a34afcf798de914
Author:     Alex Richardson <arichardson@FreeBSD.org>
AuthorDate: 2021-04-07 09:33:21 +0000
Commit:     Alex Richardson <arichardson@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 */



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