linux-kselftest.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net] selftests: net: amt: indicate progress in the stress test
@ 2025-04-03 14:56 Jakub Kicinski
  2025-04-04  5:08 ` Taehee Yoo
  2025-04-04 15:10 ` patchwork-bot+netdevbpf
  0 siblings, 2 replies; 3+ messages in thread
From: Jakub Kicinski @ 2025-04-03 14:56 UTC (permalink / raw)
  To: davem
  Cc: netdev, edumazet, pabeni, andrew+netdev, horms, Jakub Kicinski,
	ap420073, shuah, linux-kselftest

Our CI expects output from the test at least once every 10 minutes.
The AMT test when running on debug kernel is just on the edge
of that time for the stress test. Improve the output:
 - print the name of the test first, before starting it,
 - output a dot every 10% of the way.

Output after:

  TEST: amt discovery                                                 [ OK ]
  TEST: IPv4 amt multicast forwarding                                 [ OK ]
  TEST: IPv6 amt multicast forwarding                                 [ OK ]
  TEST: IPv4 amt traffic forwarding torture               ..........  [ OK ]
  TEST: IPv6 amt traffic forwarding torture               ..........  [ OK ]

Signed-off-by: Jakub Kicinski <kuba@kernel.org>
---
Since net-next is closed I'm sending this for net.
We enabled DEBUG_PREEMPT in the debug flavor and the test now
times out most of the time.

CC: ap420073@gmail.com
CC: shuah@kernel.org
CC: linux-kselftest@vger.kernel.org
---
 tools/testing/selftests/net/amt.sh | 20 ++++++++++++++------
 1 file changed, 14 insertions(+), 6 deletions(-)

diff --git a/tools/testing/selftests/net/amt.sh b/tools/testing/selftests/net/amt.sh
index d458b45c775b..3ef209cacb8e 100755
--- a/tools/testing/selftests/net/amt.sh
+++ b/tools/testing/selftests/net/amt.sh
@@ -194,15 +194,21 @@ test_remote_ip()
 
 send_mcast_torture4()
 {
-	ip netns exec "${SOURCE}" bash -c \
-		'cat /dev/urandom | head -c 1G | nc -w 1 -u 239.0.0.1 4001'
+	for i in `seq 10`; do
+		ip netns exec "${SOURCE}" bash -c \
+		   'cat /dev/urandom | head -c 100M | nc -w 1 -u 239.0.0.1 4001'
+		echo -n "."
+	done
 }
 
 
 send_mcast_torture6()
 {
-	ip netns exec "${SOURCE}" bash -c \
-		'cat /dev/urandom | head -c 1G | nc -w 1 -u ff0e::5:6 6001'
+	for i in `seq 10`; do
+		ip netns exec "${SOURCE}" bash -c \
+		   'cat /dev/urandom | head -c 100M | nc -w 1 -u ff0e::5:6 6001'
+		echo -n "."
+	done
 }
 
 check_features()
@@ -278,10 +284,12 @@ wait $pid || err=$?
 if [ $err -eq 1 ]; then
 	ERR=1
 fi
+printf "TEST: %-50s" "IPv4 amt traffic forwarding torture"
 send_mcast_torture4
-printf "TEST: %-60s  [ OK ]\n" "IPv4 amt traffic forwarding torture"
+printf "  [ OK ]\n"
+printf "TEST: %-50s" "IPv6 amt traffic forwarding torture"
 send_mcast_torture6
-printf "TEST: %-60s  [ OK ]\n" "IPv6 amt traffic forwarding torture"
+printf "  [ OK ]\n"
 sleep 5
 if [ "${ERR}" -eq 1 ]; then
         echo "Some tests failed." >&2
-- 
2.49.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH net] selftests: net: amt: indicate progress in the stress test
  2025-04-03 14:56 [PATCH net] selftests: net: amt: indicate progress in the stress test Jakub Kicinski
@ 2025-04-04  5:08 ` Taehee Yoo
  2025-04-04 15:10 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 3+ messages in thread
From: Taehee Yoo @ 2025-04-04  5:08 UTC (permalink / raw)
  To: Jakub Kicinski
  Cc: davem, netdev, edumazet, pabeni, andrew+netdev, horms, shuah,
	linux-kselftest

On Thu, Apr 3, 2025 at 11:56 PM Jakub Kicinski <kuba@kernel.org> wrote:
>

Hi Jakub,
Thanks a lot for this work!

> Our CI expects output from the test at least once every 10 minutes.
> The AMT test when running on debug kernel is just on the edge
> of that time for the stress test. Improve the output:
>  - print the name of the test first, before starting it,
>  - output a dot every 10% of the way.
>
> Output after:
>
>   TEST: amt discovery                                                 [ OK ]
>   TEST: IPv4 amt multicast forwarding                                 [ OK ]
>   TEST: IPv6 amt multicast forwarding                                 [ OK ]
>   TEST: IPv4 amt traffic forwarding torture               ..........  [ OK ]
>   TEST: IPv6 amt traffic forwarding torture               ..........  [ OK ]
>

Reviewed-by: Taehee Yoo <ap420073@gmail.com>

I tested it, and it works well.

TEST: amt discovery                                                 [ OK ]
TEST: IPv4 amt multicast forwarding                                 [ OK ]
TEST: IPv6 amt multicast forwarding                                 [ OK ]
TEST: IPv4 amt traffic forwarding torture               ..........  [ OK ]
TEST: IPv6 amt traffic forwarding torture               ..........  [ OK ]

Thanks a lot!
Taehee Yoo

> Signed-off-by: Jakub Kicinski <kuba@kernel.org>
> ---
> Since net-next is closed I'm sending this for net.
> We enabled DEBUG_PREEMPT in the debug flavor and the test now
> times out most of the time.
>
> CC: ap420073@gmail.com
> CC: shuah@kernel.org
> CC: linux-kselftest@vger.kernel.org
> ---
>  tools/testing/selftests/net/amt.sh | 20 ++++++++++++++------
>  1 file changed, 14 insertions(+), 6 deletions(-)
>
> diff --git a/tools/testing/selftests/net/amt.sh b/tools/testing/selftests/net/amt.sh
> index d458b45c775b..3ef209cacb8e 100755
> --- a/tools/testing/selftests/net/amt.sh
> +++ b/tools/testing/selftests/net/amt.sh
> @@ -194,15 +194,21 @@ test_remote_ip()
>
>  send_mcast_torture4()
>  {
> -       ip netns exec "${SOURCE}" bash -c \
> -               'cat /dev/urandom | head -c 1G | nc -w 1 -u 239.0.0.1 4001'
> +       for i in `seq 10`; do
> +               ip netns exec "${SOURCE}" bash -c \
> +                  'cat /dev/urandom | head -c 100M | nc -w 1 -u 239.0.0.1 4001'
> +               echo -n "."
> +       done
>  }
>
>
>  send_mcast_torture6()
>  {
> -       ip netns exec "${SOURCE}" bash -c \
> -               'cat /dev/urandom | head -c 1G | nc -w 1 -u ff0e::5:6 6001'
> +       for i in `seq 10`; do
> +               ip netns exec "${SOURCE}" bash -c \
> +                  'cat /dev/urandom | head -c 100M | nc -w 1 -u ff0e::5:6 6001'
> +               echo -n "."
> +       done
>  }
>
>  check_features()
> @@ -278,10 +284,12 @@ wait $pid || err=$?
>  if [ $err -eq 1 ]; then
>         ERR=1
>  fi
> +printf "TEST: %-50s" "IPv4 amt traffic forwarding torture"
>  send_mcast_torture4
> -printf "TEST: %-60s  [ OK ]\n" "IPv4 amt traffic forwarding torture"
> +printf "  [ OK ]\n"
> +printf "TEST: %-50s" "IPv6 amt traffic forwarding torture"
>  send_mcast_torture6
> -printf "TEST: %-60s  [ OK ]\n" "IPv6 amt traffic forwarding torture"
> +printf "  [ OK ]\n"
>  sleep 5
>  if [ "${ERR}" -eq 1 ]; then
>          echo "Some tests failed." >&2
> --
> 2.49.0
>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH net] selftests: net: amt: indicate progress in the stress test
  2025-04-03 14:56 [PATCH net] selftests: net: amt: indicate progress in the stress test Jakub Kicinski
  2025-04-04  5:08 ` Taehee Yoo
@ 2025-04-04 15:10 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2025-04-04 15:10 UTC (permalink / raw)
  To: Jakub Kicinski
  Cc: davem, netdev, edumazet, pabeni, andrew+netdev, horms, ap420073,
	shuah, linux-kselftest

Hello:

This patch was applied to netdev/net.git (main)
by Jakub Kicinski <kuba@kernel.org>:

On Thu,  3 Apr 2025 07:56:36 -0700 you wrote:
> Our CI expects output from the test at least once every 10 minutes.
> The AMT test when running on debug kernel is just on the edge
> of that time for the stress test. Improve the output:
>  - print the name of the test first, before starting it,
>  - output a dot every 10% of the way.
> 
> Output after:
> 
> [...]

Here is the summary with links:
  - [net] selftests: net: amt: indicate progress in the stress test
    https://git.kernel.org/netdev/net/c/94f68c0f99a5

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-04-04 15:10 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-03 14:56 [PATCH net] selftests: net: amt: indicate progress in the stress test Jakub Kicinski
2025-04-04  5:08 ` Taehee Yoo
2025-04-04 15:10 ` patchwork-bot+netdevbpf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).