selftests: mptcp: print_test out of verify_listener_events
BugLink: https://bugs.launchpad.net/bugs/2075154 verify_listener_events() helper will be exported into mptcp_lib.sh as a public function, but print_test() is invoked in it, which is a private function in userspace_pm.sh only. So this patch moves print_test() out of verify_listener_events(). Signed-off-by: Geliang Tang <tanggeliang@kylinos.cn> Reviewed-by: Matthieu Baerts (NGI0) <matttbe@kernel.org> Signed-off-by: Matthieu Baerts (NGI0) <matttbe@kernel.org> Link: https://lore.kernel.org/r/20240308-upstream-net-next-20240308-selftests-mptcp-unification-v1-12-4f42c347b653@kernel.org Signed-off-by: Jakub Kicinski <kuba@kernel.org> (cherry picked from commit 8ebb44196585d3c9405fba1e409cf2312bca30ac) [diewald: preqrequisite commit for e874557fce1b selftests: mptcp: userspace_pm: fixed subtest names] Signed-off-by: Manuel Diewald <manuel.diewald@canonical.com> Signed-off-by: Stefan Bader <stefan.bader@canonical.com> Signed-off-by: Roxana Nicolescu <roxana.nicolescu@canonical.com>
This commit is contained in:
committed by
Roxana Nicolescu
parent
e5ae766c0f
commit
63eb8a58f7
@@ -907,12 +907,6 @@ verify_listener_events()
|
||||
local saddr
|
||||
local sport
|
||||
|
||||
if [ $e_type = $LISTENER_CREATED ]; then
|
||||
print_test "CREATE_LISTENER $e_saddr:$e_sport"
|
||||
elif [ $e_type = $LISTENER_CLOSED ]; then
|
||||
print_test "CLOSE_LISTENER $e_saddr:$e_sport"
|
||||
fi
|
||||
|
||||
type=$(mptcp_lib_evts_get_info type $evt $e_type)
|
||||
family=$(mptcp_lib_evts_get_info family $evt $e_type)
|
||||
sport=$(mptcp_lib_evts_get_info sport $evt $e_type)
|
||||
@@ -944,6 +938,7 @@ test_listener()
|
||||
local listener_pid=$!
|
||||
|
||||
sleep 0.5
|
||||
print_test "CREATE_LISTENER 10.0.2.2:$client4_port"
|
||||
verify_listener_events $client_evts $LISTENER_CREATED $AF_INET 10.0.2.2 $client4_port
|
||||
|
||||
# ADD_ADDR from client to server machine reusing the subflow port
|
||||
@@ -960,6 +955,7 @@ test_listener()
|
||||
mptcp_lib_kill_wait $listener_pid
|
||||
|
||||
sleep 0.5
|
||||
print_test "CLOSE_LISTENER 10.0.2.2:$client4_port"
|
||||
verify_listener_events $client_evts $LISTENER_CLOSED $AF_INET 10.0.2.2 $client4_port
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user