From: Masami Hiramatsu <mhiramat@kernel.org>
To: Steven Rostedt <rostedt@goodmis.org>
Cc: Tom Zanussi <zanussi@kernel.org>,
axelrasmussen@google.com, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v3 7/7] selftests/ftrace: Add test case for synthetic event syntax errors
Date: Thu, 15 Oct 2020 09:16:29 +0900 [thread overview]
Message-ID: <20201015091629.924b20723493d072ce14505c@kernel.org> (raw)
In-Reply-To: <20201014133215.21d066e4@gandalf.local.home>
Hi Steve,
On Wed, 14 Oct 2020 13:32:15 -0400
Steven Rostedt <rostedt@goodmis.org> wrote:
> On Wed, 14 Oct 2020 11:06:36 +0900
> Masami Hiramatsu <mhiramat@kernel.org> wrote:
>
> > Hi Tom,
> >
> > On Tue, 13 Oct 2020 09:17:58 -0500
> > Tom Zanussi <zanussi@kernel.org> wrote:
> >
> > > Add a selftest that verifies that the syntax error messages and caret
> > > positions are correct for most of the possible synthetic event syntax
> > > error cases.
> > >
> > > Signed-off-by: Tom Zanussi <zanussi@kernel.org>
> > > ---
> > > .../trigger-synthetic_event_syntax_errors.tc | 19 +++++++++++++++++++
> > > 1 file changed, 19 insertions(+)
> > > create mode 100644 tools/testing/selftests/ftrace/test.d/trigger/inter-event/trigger-synthetic_event_syntax_errors.tc
> > >
> > > diff --git a/tools/testing/selftests/ftrace/test.d/trigger/inter-event/trigger-synthetic_event_syntax_errors.tc b/tools/testing/selftests/ftrace/test.d/trigger/inter-event/trigger-synthetic_event_syntax_errors.tc
> > > new file mode 100644
> > > index 000000000000..ada594fe16cb
> > > --- /dev/null
> > > +++ b/tools/testing/selftests/ftrace/test.d/trigger/inter-event/trigger-synthetic_event_syntax_errors.tc
> > > @@ -0,0 +1,19 @@
> > > +#!/bin/sh
> > > +# SPDX-License-Identifier: GPL-2.0
> > > +# description: event trigger - test synthetic_events syntax parser errors
> > > +# requires: synthetic_events error_log
> >
> > This also requires dynamic strings support. So, its "requires" line should be
> >
> > # requires: synthetic_events error_log "char name[]' >> synthetic_events":README
> >
> > > +
> > > +check_error() { # command-with-error-pos-by-^
> > > + ftrace_errlog_check 'synthetic_events' "$1" 'synthetic_events'
> > > +}
> > > +
> >
> > BTW, some errors looks a bit odd.
> >
> > > +check_error 'myevent ^chr arg' # INVALID_TYPE
> > > +check_error 'myevent ^char str[];; int v' # INVALID_TYPE
> >
> > I think there is a wrong "void" argument between ";", instead of invalid type.
> >
> > > +check_error 'myevent char ^str]; int v' # INVALID_NAME
> > > +check_error 'myevent char ^str;[]' # INVALID_NAME
> >
> > This is also not an invalid name but '[]' is an invalid type.
> >
> > > +check_error 'myevent ^char str[; int v' # INVALID_TYPE
> > > +check_error '^mye;vent char str[]' # BAD_NAME
> > > +check_error 'myevent char str[]; ^int' # INVALID_FIELD
> >
> > Isn't it an incomplete command?
> >
> > > +check_error '^myevent' # INCOMPLETE_CMD
> > > +
> > > +exit 0
> >
>
> Hi Masami,
>
> I finished testing this series along with other patches (some from you),
> and I'm ready to push this to next, and hopefully soon to Linus. You have a
> "tested-by" for the entire series. Are you OK with this patch too? Can we
> push this forward and fix up any issues you have later?
I think this is OK to push at least for the upstream kernel (unless backporting).
The above issues can be fixed in another series :)
Thank you,
--
Masami Hiramatsu <mhiramat@kernel.org>
next prev parent reply other threads:[~2020-10-15 0:16 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-10-13 14:17 [PATCH v3 0/7] tracing: Synthetic event dynamic string fixes Tom Zanussi
2020-10-13 14:17 ` [PATCH v3 1/7] tracing: Don't show dynamic string internals in synthetic event description Tom Zanussi
2020-10-13 14:17 ` [PATCH v3 2/7] tracing: Move is_good_name() from trace_probe.h to trace.h Tom Zanussi
2020-10-13 14:17 ` [PATCH v3 3/7] tracing: Check that the synthetic event and field names are legal Tom Zanussi
2020-10-13 14:17 ` [PATCH v3 4/7] tracing: Add synthetic event error logging Tom Zanussi
2020-10-13 15:37 ` Steven Rostedt
2020-10-13 14:17 ` [PATCH v3 5/7] selftests/ftrace: Change synthetic event name for inter-event-combined test Tom Zanussi
2020-10-13 14:17 ` [PATCH v3 6/7] tracing: Handle synthetic event array field type checking correctly Tom Zanussi
2020-10-13 14:17 ` [PATCH v3 7/7] selftests/ftrace: Add test case for synthetic event syntax errors Tom Zanussi
2020-10-14 2:06 ` Masami Hiramatsu
2020-10-14 17:32 ` Steven Rostedt
2020-10-15 0:16 ` Masami Hiramatsu [this message]
2020-10-15 13:59 ` Tom Zanussi
2020-10-14 0:22 ` [PATCH v3 0/7] tracing: Synthetic event dynamic string fixes Masami Hiramatsu
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=20201015091629.924b20723493d072ce14505c@kernel.org \
--to=mhiramat@kernel.org \
--cc=axelrasmussen@google.com \
--cc=linux-kernel@vger.kernel.org \
--cc=rostedt@goodmis.org \
--cc=zanussi@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
all inboxes | Powered by JetHome®