Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 10 Apr 2021 13:30:10 GMT
From:      Alex Richardson <arichardson@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 676010ab86f5 - stable/13 - tests/sys/net/routing: XFAIL the two failing tests
Message-ID:  <202104101330.13ADUACI005337@gitrepo.freebsd.org>

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

URL: https://cgit.FreeBSD.org/src/commit/?id=676010ab86f51643a2382cbd222102181c746d00

commit 676010ab86f51643a2382cbd222102181c746d00
Author:     Alex Richardson <arichardson@FreeBSD.org>
AuthorDate: 2021-04-07 09:33:21 +0000
Commit:     Alex Richardson <arichardson@FreeBSD.org>
CommitDate: 2021-04-10 13:01:05 +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
    
    (cherry picked from commit 83532eb68cd06a3517bb7b5e5a34afcf798de914)
---
 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?202104101330.13ADUACI005337>