Skip to content

Commit

Permalink
selftests: mptcp: diag: unique 'in use' subtest names
Browse files Browse the repository at this point in the history
commit 645c1dc upstream.

It is important to have a unique (sub)test name in TAP, because some CI
environments drop tests with duplicated name.

Some 'in use' subtests from the diag selftest had the same names, e.g.:

    chk 0 msk in use after flush

Now the previous value is taken, to have different names, e.g.:

    chk 2->0 msk in use after flush

While at it, avoid repeating the full message, declare it once in the
helper.

Fixes: ce99025 ("selftests: mptcp: diag: format subtests results in TAP")
Cc: stable@vger.kernel.org
Reviewed-by: Geliang Tang <geliang@kernel.org>
Signed-off-by: Matthieu Baerts (NGI0) <matttbe@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
matttbe authored and gregkh committed Mar 1, 2024
1 parent 509bf4e commit 6b51994
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions tools/testing/selftests/net/mptcp/diag.sh
Original file line number Diff line number Diff line change
Expand Up @@ -166,9 +166,13 @@ chk_msk_listen()
chk_msk_inuse()
{
local expected=$1
local msg="$2"
local msg="....chk ${2:-${expected}} msk in use"
local listen_nr

if [ "${expected}" -eq 0 ]; then
msg+=" after flush"
fi

listen_nr=$(ss -N "${ns}" -Ml | grep -c LISTEN)
expected=$((expected + listen_nr))

Expand All @@ -179,7 +183,7 @@ chk_msk_inuse()
sleep 0.1
done

__chk_nr get_msk_inuse $expected "$msg" 0
__chk_nr get_msk_inuse $expected "${msg}" 0
}

# $1: ns, $2: port
Expand Down Expand Up @@ -244,11 +248,11 @@ wait_connected $ns 10000
chk_msk_nr 2 "after MPC handshake "
chk_msk_remote_key_nr 2 "....chk remote_key"
chk_msk_fallback_nr 0 "....chk no fallback"
chk_msk_inuse 2 "....chk 2 msk in use"
chk_msk_inuse 2
chk_msk_cestab 2
flush_pids

chk_msk_inuse 0 "....chk 0 msk in use after flush"
chk_msk_inuse 0 "2->0"
chk_msk_cestab 0

echo "a" | \
Expand All @@ -264,11 +268,11 @@ echo "b" | \
127.0.0.1 >/dev/null &
wait_connected $ns 10001
chk_msk_fallback_nr 1 "check fallback"
chk_msk_inuse 1 "....chk 1 msk in use"
chk_msk_inuse 1
chk_msk_cestab 1
flush_pids

chk_msk_inuse 0 "....chk 0 msk in use after flush"
chk_msk_inuse 0 "1->0"
chk_msk_cestab 0

NR_CLIENTS=100
Expand All @@ -290,11 +294,11 @@ for I in `seq 1 $NR_CLIENTS`; do
done

wait_msk_nr $((NR_CLIENTS*2)) "many msk socket present"
chk_msk_inuse $((NR_CLIENTS*2)) "....chk many msk in use"
chk_msk_inuse $((NR_CLIENTS*2)) "many"
chk_msk_cestab $((NR_CLIENTS*2))
flush_pids

chk_msk_inuse 0 "....chk 0 msk in use after flush"
chk_msk_inuse 0 "many->0"
chk_msk_cestab 0

mptcp_lib_result_print_all_tap
Expand Down

0 comments on commit 6b51994

Please sign in to comment.