From: Stanislav Fomichev <sdf@fomichev.me>
To: Jakub Kicinski <kuba@kernel.org>
Cc: davem@davemloft.net, netdev@vger.kernel.org, edumazet@google.com,
pabeni@redhat.com, shuah@kernel.org, petrm@nvidia.com
Subject: Re: [PATCH net-next] selftests: net: ksft: print more of the stack for checks
Date: Mon, 29 Jul 2024 14:58:09 -0700 [thread overview]
Message-ID: <ZqgQcXq0SlgkjU9C@mini-arch> (raw)
In-Reply-To: <20240729204536.3637577-1-kuba@kernel.org>
On 07/29, Jakub Kicinski wrote:
> Print more stack frames and the failing line when check fails.
> This helps when tests use helpers to do the checks.
>
> Before:
>
> # At ./ksft/drivers/net/hw/rss_ctx.py line 92:
> # Check failed 1037698 >= 396893.0 traffic on other queues:[344612, 462380, 233020, 449174, 342298]
> not ok 8 rss_ctx.test_rss_context_queue_reconfigure
>
> After:
>
> # Check| At ./ksft/drivers/net/hw/rss_ctx.py, line 387, in test_rss_context_queue_reconfigure:
> # Check| test_rss_queue_reconfigure(cfg, main_ctx=False)
> # Check| At ./ksft/drivers/net/hw/rss_ctx.py, line 230, in test_rss_queue_reconfigure:
> # Check| _send_traffic_check(cfg, port, ctx_ref, { 'target': (0, 3),
> # Check| At ./ksft/drivers/net/hw/rss_ctx.py, line 92, in _send_traffic_check:
> # Check| ksft_lt(sum(cnts[i] for i in params['noise']), directed / 2,
> # Check failed 1045235 >= 405823.5 traffic on other queues (context 1)':[460068, 351995, 565970, 351579, 127270]
> not ok 8 rss_ctx.test_rss_context_queue_reconfigure
>
> Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Acked-by: Stanislav Fomichev <sdf@fomichev.me>
> ---
> CC: shuah@kernel.org
> CC: petrm@nvidia.com
> ---
> tools/testing/selftests/net/lib/py/ksft.py | 12 ++++++++++--
> 1 file changed, 10 insertions(+), 2 deletions(-)
>
> diff --git a/tools/testing/selftests/net/lib/py/ksft.py b/tools/testing/selftests/net/lib/py/ksft.py
> index f26c20df9db4..c2356e07c34c 100644
> --- a/tools/testing/selftests/net/lib/py/ksft.py
> +++ b/tools/testing/selftests/net/lib/py/ksft.py
> @@ -32,8 +32,16 @@ KSFT_RESULT_ALL = True
> global KSFT_RESULT
> KSFT_RESULT = False
>
> - frame = inspect.stack()[2]
> - ksft_pr("At " + frame.filename + " line " + str(frame.lineno) + ":")
> + stack = inspect.stack()
> + started = False
[..]
> + for i in reversed(range(2, len(stack))):
> + frame = stack[i]
optional more python-y way might be:
for frame in reversed(stack[2:]):
xxx
prev parent reply other threads:[~2024-07-29 21:58 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-29 20:45 [PATCH net-next] selftests: net: ksft: print more of the stack for checks Jakub Kicinski
2024-07-29 21:58 ` Stanislav Fomichev [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ZqgQcXq0SlgkjU9C@mini-arch \
--to=sdf@fomichev.me \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=kuba@kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=petrm@nvidia.com \
--cc=shuah@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox