mirror of
https://github.com/nxp-imx/linux-imx.git
synced 2025-07-13 12:49:35 +02:00
selftests: mptcp: join: disable get and dump addr checks
These new checks have been recently queued to v6.6 [1] with the backport of commit38f027fca1
("selftests: mptcp: dump userspace addrs list"), and commit4cc5cc7ca0
("selftests: mptcp: userspace pm get addr tests"). On v6.6, these checks will simply print 'skip', because the associated features are not available in this version. That's fine, except that the MPTCP CI sets the SELFTESTS_MPTCP_LIB_EXPECT_ALL_FEATURES=1 env var, which will force these subtests to fail when using the selftests from v6.6 on a v6.6 kernel, because the feature is not available. To ease the backports (and possible future ones), I suggest to keep the recent backports, but skip calling mptcp_lib_kallsyms_has() not to have the CIs setting this env var complaining about the associated features not being available. Link: https://git.kernel.org/pub/scm/linux/kernel/git/stable/stable-queue.git/commit/?id=bd2122541bd8 [1] Signed-off-by: Matthieu Baerts (NGI0) <matttbe@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
81f2e73e73
commit
5803af655f
|
@ -3472,7 +3472,7 @@ userspace_pm_chk_dump_addr()
|
||||||
|
|
||||||
print_check "dump addrs ${check}"
|
print_check "dump addrs ${check}"
|
||||||
|
|
||||||
if mptcp_lib_kallsyms_has "mptcp_userspace_pm_dump_addr$"; then
|
if false && mptcp_lib_kallsyms_has "mptcp_userspace_pm_dump_addr$"; then
|
||||||
check_output "userspace_pm_dump ${ns}" "${exp}"
|
check_output "userspace_pm_dump ${ns}" "${exp}"
|
||||||
else
|
else
|
||||||
print_skip
|
print_skip
|
||||||
|
@ -3487,7 +3487,7 @@ userspace_pm_chk_get_addr()
|
||||||
|
|
||||||
print_check "get id ${id} addr"
|
print_check "get id ${id} addr"
|
||||||
|
|
||||||
if mptcp_lib_kallsyms_has "mptcp_userspace_pm_get_addr$"; then
|
if false && mptcp_lib_kallsyms_has "mptcp_userspace_pm_get_addr$"; then
|
||||||
check_output "userspace_pm_get_addr ${ns} ${id}" "${exp}"
|
check_output "userspace_pm_get_addr ${ns} ${id}" "${exp}"
|
||||||
else
|
else
|
||||||
print_skip
|
print_skip
|
||||||
|
|
Loading…
Reference in New Issue
Block a user