Date: Sat, 20 Nov 2021 19:04:47 GMT From: Kristof Provost <kp@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 67573b7a39b1 - main - net tests: fix if_stf:6to4 Message-ID: <202111201904.1AKJ4lZv016965@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by kp: URL: https://cgit.FreeBSD.org/src/commit/?id=67573b7a39b19e39536a68563fed0d940604e573 commit 67573b7a39b19e39536a68563fed0d940604e573 Author: Kristof Provost <kp@FreeBSD.org> AuthorDate: 2021-11-10 11:02:34 +0000 Commit: Kristof Provost <kp@FreeBSD.org> CommitDate: 2021-11-20 18:29:02 +0000 net tests: fix if_stf:6to4 This test needs to have the loopback interface enabled, or route lookups for our own IP addresses will fail. MFC after: 3 weeks Sponsored by: Rubicon Communications, LLC ("Netgate") Differential Revision: https://reviews.freebsd.org/D33041 --- tests/sys/net/if_stf.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/sys/net/if_stf.sh b/tests/sys/net/if_stf.sh index e97938f0b2d8..8ed1ba4daaee 100644 --- a/tests/sys/net/if_stf.sh +++ b/tests/sys/net/if_stf.sh @@ -41,7 +41,7 @@ atf_test_case "6to4" "cleanup" atf_skip "This test requires if_stf" fi if ! kldstat -q -m if_gif; then - atf_skip "This test requires if_stf" + atf_skip "This test requires if_gif" fi epair=$(vnet_mkepair) @@ -56,6 +56,7 @@ atf_test_case "6to4" "cleanup" jexec relay route -6 add default -interface $gif vnet_mkjail client ${epair}b + jexec client ifconfig lo0 up jexec client ifconfig ${epair}b 192.0.2.2/24 up stf=$(jexec client ifconfig stf create) jexec client ifconfig $stf inet6 2002:c000:0202::1/32 up
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202111201904.1AKJ4lZv016965>