* [RESEND PATCH v2] selftests:connector: Fix input argument error paths to skip
@ 2023-07-29 0:24 Shuah Khan
2023-07-31 20:23 ` Shuah Khan
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Shuah Khan @ 2023-07-29 0:24 UTC (permalink / raw)
To: shuah, Liam.Howlett, anjali.k.kulkarni, kuba
Cc: Shuah Khan, davem, netdev, linux-kselftest, linux-kernel
Fix input argument parsing paths to skip from their error legs.
This fix helps to avoid false test failure reports without running
the test.
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
---
v2: Removed root check based on Anjali's review comments.
Add netdev to RESEND
tools/testing/selftests/connector/proc_filter.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tools/testing/selftests/connector/proc_filter.c b/tools/testing/selftests/connector/proc_filter.c
index 4fe8c6763fd8..4a825b997666 100644
--- a/tools/testing/selftests/connector/proc_filter.c
+++ b/tools/testing/selftests/connector/proc_filter.c
@@ -248,7 +248,7 @@ int main(int argc, char *argv[])
if (argc > 2) {
printf("Expected 0(assume no-filter) or 1 argument(-f)\n");
- exit(1);
+ exit(KSFT_SKIP);
}
if (argc == 2) {
@@ -256,7 +256,7 @@ int main(int argc, char *argv[])
filter = 1;
} else {
printf("Valid option : -f (for filter feature)\n");
- exit(1);
+ exit(KSFT_SKIP);
}
}
--
2.39.2
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [RESEND PATCH v2] selftests:connector: Fix input argument error paths to skip
2023-07-29 0:24 [RESEND PATCH v2] selftests:connector: Fix input argument error paths to skip Shuah Khan
@ 2023-07-31 20:23 ` Shuah Khan
2023-07-31 21:07 ` Jakub Kicinski
2023-07-31 21:57 ` Anjali Kulkarni
2023-08-01 3:20 ` patchwork-bot+netdevbpf
2 siblings, 1 reply; 6+ messages in thread
From: Shuah Khan @ 2023-07-31 20:23 UTC (permalink / raw)
To: shuah, Liam.Howlett, anjali.k.kulkarni, kuba
Cc: davem, netdev, linux-kselftest, linux-kernel, Shuah Khan
On 7/28/23 18:24, Shuah Khan wrote:
> Fix input argument parsing paths to skip from their error legs.
> This fix helps to avoid false test failure reports without running
> the test.
>
> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
> ---
> v2: Removed root check based on Anjali's review comments.
> Add netdev to RESEND
>
> tools/testing/selftests/connector/proc_filter.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/tools/testing/selftests/connector/proc_filter.c b/tools/testing/selftests/connector/proc_filter.c
> index 4fe8c6763fd8..4a825b997666 100644
> --- a/tools/testing/selftests/connector/proc_filter.c
> +++ b/tools/testing/selftests/connector/proc_filter.c
> @@ -248,7 +248,7 @@ int main(int argc, char *argv[])
>
> if (argc > 2) {
> printf("Expected 0(assume no-filter) or 1 argument(-f)\n");
> - exit(1);
> + exit(KSFT_SKIP);
> }
>
> if (argc == 2) {
> @@ -256,7 +256,7 @@ int main(int argc, char *argv[])
> filter = 1;
> } else {
> printf("Valid option : -f (for filter feature)\n");
> - exit(1);
> + exit(KSFT_SKIP);
> }
> }
>
Hi Jakub,
I sent v2 for patch 3 in the series. Do you want me to send the
entire series again with this revised 3rd patch.
thanks,
-- Shuah
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [RESEND PATCH v2] selftests:connector: Fix input argument error paths to skip
2023-07-31 20:23 ` Shuah Khan
@ 2023-07-31 21:07 ` Jakub Kicinski
2023-07-31 21:57 ` Anjali Kulkarni
0 siblings, 1 reply; 6+ messages in thread
From: Jakub Kicinski @ 2023-07-31 21:07 UTC (permalink / raw)
To: Shuah Khan, anjali.k.kulkarni
Cc: shuah, Liam.Howlett, davem, netdev, linux-kselftest, linux-kernel
On Mon, 31 Jul 2023 14:23:45 -0600 Shuah Khan wrote:
> I sent v2 for patch 3 in the series. Do you want me to send the
> entire series again with this revised 3rd patch.
I think it's all good. The build bot couldn't parse the partial series
but the patches are pretty trivial, so low risk of breakage.
Anjali, it would be good to get your Review / Ack tag on this patch,
since you're the author.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [RESEND PATCH v2] selftests:connector: Fix input argument error paths to skip
2023-07-31 21:07 ` Jakub Kicinski
@ 2023-07-31 21:57 ` Anjali Kulkarni
0 siblings, 0 replies; 6+ messages in thread
From: Anjali Kulkarni @ 2023-07-31 21:57 UTC (permalink / raw)
To: Jakub Kicinski
Cc: Shuah Khan, Shuah Khan, Liam Howlett, davem@davemloft.net,
netdev@vger.kernel.org, linux-kselftest@vger.kernel.org,
linux-kernel@vger.kernel.org
> On Jul 31, 2023, at 2:07 PM, Jakub Kicinski <kuba@kernel.org> wrote:
>
> On Mon, 31 Jul 2023 14:23:45 -0600 Shuah Khan wrote:
>> I sent v2 for patch 3 in the series. Do you want me to send the
>> entire series again with this revised 3rd patch.
>
> I think it's all good. The build bot couldn't parse the partial series
> but the patches are pretty trivial, so low risk of breakage.
>
> Anjali, it would be good to get your Review / Ack tag on this patch,
> since you're the author.
Yes done.
Anjali
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [RESEND PATCH v2] selftests:connector: Fix input argument error paths to skip
2023-07-29 0:24 [RESEND PATCH v2] selftests:connector: Fix input argument error paths to skip Shuah Khan
2023-07-31 20:23 ` Shuah Khan
@ 2023-07-31 21:57 ` Anjali Kulkarni
2023-08-01 3:20 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 6+ messages in thread
From: Anjali Kulkarni @ 2023-07-31 21:57 UTC (permalink / raw)
To: Shuah Khan
Cc: Shuah Khan, Liam Howlett, kuba@kernel.org, davem@davemloft.net,
netdev@vger.kernel.org, linux-kselftest@vger.kernel.org,
linux-kernel@vger.kernel.org
> On Jul 28, 2023, at 5:24 PM, Shuah Khan <skhan@linuxfoundation.org> wrote:
>
> Fix input argument parsing paths to skip from their error legs.
> This fix helps to avoid false test failure reports without running
> the test.
>
> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Reviewed-by: Anjali Kulkarni <anjali.k.kulkarni@oracle.com>
> ---
> v2: Removed root check based on Anjali's review comments.
> Add netdev to RESEND
>
> tools/testing/selftests/connector/proc_filter.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/tools/testing/selftests/connector/proc_filter.c b/tools/testing/selftests/connector/proc_filter.c
> index 4fe8c6763fd8..4a825b997666 100644
> --- a/tools/testing/selftests/connector/proc_filter.c
> +++ b/tools/testing/selftests/connector/proc_filter.c
> @@ -248,7 +248,7 @@ int main(int argc, char *argv[])
>
> if (argc > 2) {
> printf("Expected 0(assume no-filter) or 1 argument(-f)\n");
> - exit(1);
> + exit(KSFT_SKIP);
> }
>
> if (argc == 2) {
> @@ -256,7 +256,7 @@ int main(int argc, char *argv[])
> filter = 1;
> } else {
> printf("Valid option : -f (for filter feature)\n");
> - exit(1);
> + exit(KSFT_SKIP);
> }
> }
>
> --
> 2.39.2
>
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [RESEND PATCH v2] selftests:connector: Fix input argument error paths to skip
2023-07-29 0:24 [RESEND PATCH v2] selftests:connector: Fix input argument error paths to skip Shuah Khan
2023-07-31 20:23 ` Shuah Khan
2023-07-31 21:57 ` Anjali Kulkarni
@ 2023-08-01 3:20 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 6+ messages in thread
From: patchwork-bot+netdevbpf @ 2023-08-01 3:20 UTC (permalink / raw)
To: Shuah Khan
Cc: shuah, Liam.Howlett, anjali.k.kulkarni, kuba, davem, netdev,
linux-kselftest, linux-kernel
Hello:
This patch was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:
On Fri, 28 Jul 2023 18:24:03 -0600 you wrote:
> Fix input argument parsing paths to skip from their error legs.
> This fix helps to avoid false test failure reports without running
> the test.
>
> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
> ---
> v2: Removed root check based on Anjali's review comments.
> Add netdev to RESEND
>
> [...]
Here is the summary with links:
- [RESEND,v2] selftests:connector: Fix input argument error paths to skip
https://git.kernel.org/netdev/net-next/c/04786c0659db
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] 6+ messages in thread
end of thread, other threads:[~2023-08-01 3:20 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-29 0:24 [RESEND PATCH v2] selftests:connector: Fix input argument error paths to skip Shuah Khan
2023-07-31 20:23 ` Shuah Khan
2023-07-31 21:07 ` Jakub Kicinski
2023-07-31 21:57 ` Anjali Kulkarni
2023-07-31 21:57 ` Anjali Kulkarni
2023-08-01 3:20 ` 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).