public inbox for linux-trace-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 3/3] selftests/user_events: Add test cases when event is diabled
@ 2023-06-21  6:35 sunliming
  2023-06-22 20:27 ` Beau Belgrave
  0 siblings, 1 reply; 4+ messages in thread
From: sunliming @ 2023-06-21  6:35 UTC (permalink / raw)
  To: rostedt, mhiramat, beaub
  Cc: kelulanainsley, linux-trace-kernel, linux-kernel, sunliming

When user_events are disabled, it's write operation should return zero.
Add this test cases.

Signed-off-by: sunliming <sunliming@kylinos.cn>
---
 tools/testing/selftests/user_events/ftrace_test.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/tools/testing/selftests/user_events/ftrace_test.c b/tools/testing/selftests/user_events/ftrace_test.c
index d33bd31425db..7968d69c3a5c 100644
--- a/tools/testing/selftests/user_events/ftrace_test.c
+++ b/tools/testing/selftests/user_events/ftrace_test.c
@@ -297,6 +297,9 @@ TEST_F(user, write_events) {
 	io[0].iov_base = &reg.write_index;
 	io[0].iov_len = sizeof(reg.write_index);
 
+	/* Write should return zero when event is not enabled */
+	ASSERT_EQ(0, writev(self->data_fd, (const struct iovec *)io, 3));
+
 	/* Enable event */
 	self->enable_fd = open(enable_file, O_RDWR);
 	ASSERT_NE(-1, write(self->enable_fd, "1", sizeof("1")))
-- 
2.25.1


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

* Re: [PATCH v3 3/3] selftests/user_events: Add test cases when event is diabled
  2023-06-21  6:35 [PATCH v3 3/3] selftests/user_events: Add test cases when event is diabled sunliming
@ 2023-06-22 20:27 ` Beau Belgrave
  2023-06-22 20:30   ` Steven Rostedt
  0 siblings, 1 reply; 4+ messages in thread
From: Beau Belgrave @ 2023-06-22 20:27 UTC (permalink / raw)
  To: sunliming
  Cc: rostedt, mhiramat, kelulanainsley, linux-trace-kernel,
	linux-kernel

On Wed, Jun 21, 2023 at 02:35:02PM +0800, sunliming wrote:
> When user_events are disabled, it's write operation should return zero.
> Add this test cases.
> 
> Signed-off-by: sunliming <sunliming@kylinos.cn>

I don't have a problem with the chagne to the test, however, the patch
title has a typo in it for "disabled" that should be corrected. I've
ACK'd the other 2 patches, so you only need to resubmit this one with a
correct title.

Thanks,
-Beau

> ---
>  tools/testing/selftests/user_events/ftrace_test.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/tools/testing/selftests/user_events/ftrace_test.c b/tools/testing/selftests/user_events/ftrace_test.c
> index d33bd31425db..7968d69c3a5c 100644
> --- a/tools/testing/selftests/user_events/ftrace_test.c
> +++ b/tools/testing/selftests/user_events/ftrace_test.c
> @@ -297,6 +297,9 @@ TEST_F(user, write_events) {
>  	io[0].iov_base = &reg.write_index;
>  	io[0].iov_len = sizeof(reg.write_index);
>  
> +	/* Write should return zero when event is not enabled */
> +	ASSERT_EQ(0, writev(self->data_fd, (const struct iovec *)io, 3));
> +
>  	/* Enable event */
>  	self->enable_fd = open(enable_file, O_RDWR);
>  	ASSERT_NE(-1, write(self->enable_fd, "1", sizeof("1")))
> -- 
> 2.25.1

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

* Re: [PATCH v3 3/3] selftests/user_events: Add test cases when event is diabled
  2023-06-22 20:27 ` Beau Belgrave
@ 2023-06-22 20:30   ` Steven Rostedt
  2023-06-22 20:50     ` Beau Belgrave
  0 siblings, 1 reply; 4+ messages in thread
From: Steven Rostedt @ 2023-06-22 20:30 UTC (permalink / raw)
  To: Beau Belgrave
  Cc: sunliming, mhiramat, kelulanainsley, linux-trace-kernel,
	linux-kernel

On Thu, 22 Jun 2023 20:27:40 +0000
Beau Belgrave <beaub@linux.microsoft.com> wrote:

> On Wed, Jun 21, 2023 at 02:35:02PM +0800, sunliming wrote:
> > When user_events are disabled, it's write operation should return zero.
> > Add this test cases.
> > 
> > Signed-off-by: sunliming <sunliming@kylinos.cn>  
> 
> I don't have a problem with the chagne to the test, however, the patch
> title has a typo in it for "disabled" that should be corrected. I've
> ACK'd the other 2 patches, so you only need to resubmit this one with a
> correct title.

Ah, I misunderstood when we talked earlier today. I thought the typo was in
the text of the start selftest. That is, it was part of the patch.

For a typo in the subject, I can make that fix when I pulled it in. I just
avoid touching content of the patch itself.

Care to ack it?

Thanks!

-- Steve

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

* Re: [PATCH v3 3/3] selftests/user_events: Add test cases when event is diabled
  2023-06-22 20:30   ` Steven Rostedt
@ 2023-06-22 20:50     ` Beau Belgrave
  0 siblings, 0 replies; 4+ messages in thread
From: Beau Belgrave @ 2023-06-22 20:50 UTC (permalink / raw)
  To: Steven Rostedt
  Cc: sunliming, mhiramat, kelulanainsley, linux-trace-kernel,
	linux-kernel

On Thu, Jun 22, 2023 at 04:30:36PM -0400, Steven Rostedt wrote:
> On Thu, 22 Jun 2023 20:27:40 +0000
> Beau Belgrave <beaub@linux.microsoft.com> wrote:
> 
> > On Wed, Jun 21, 2023 at 02:35:02PM +0800, sunliming wrote:
> > > When user_events are disabled, it's write operation should return zero.
> > > Add this test cases.
> > > 
> > > Signed-off-by: sunliming <sunliming@kylinos.cn>  
> > 
> > I don't have a problem with the chagne to the test, however, the patch
> > title has a typo in it for "disabled" that should be corrected. I've
> > ACK'd the other 2 patches, so you only need to resubmit this one with a
> > correct title.
> 
> Ah, I misunderstood when we talked earlier today. I thought the typo was in
> the text of the start selftest. That is, it was part of the patch.
> 
> For a typo in the subject, I can make that fix when I pulled it in. I just
> avoid touching content of the patch itself.
> 

Great, thanks!

> Care to ack it?
> 

Sure thing:
Acked-by: Beau Belgrave <beaub@linux.microsoft.com>

Thanks,
-Beau

> Thanks!
> 
> -- Steve

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

end of thread, other threads:[~2023-06-22 20:50 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-21  6:35 [PATCH v3 3/3] selftests/user_events: Add test cases when event is diabled sunliming
2023-06-22 20:27 ` Beau Belgrave
2023-06-22 20:30   ` Steven Rostedt
2023-06-22 20:50     ` Beau Belgrave

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox