From: Arnaldo Carvalho de Melo <acme@kernel.org>
To: Veronika Molnarova <vmolnaro@redhat.com>
Cc: linux-perf-users@vger.kernel.org, acme@redhat.com,
namhyung@kernel.org, mpetlan@redhat.com, irogers@google.com,
atrajeev@linux.vnet.ibm.com, masami.hiramatsu.pt@hitachi.com
Subject: Re: [PATCH v2 00/11] perftool-testsuite 2nd batch
Date: Wed, 28 Aug 2024 17:39:44 -0300 [thread overview]
Message-ID: <Zs-LEEutfp0hkjh5@x1> (raw)
In-Reply-To: <66bed21e-1ea6-4676-b202-dd7c2f2f847c@redhat.com>
On Wed, Aug 28, 2024 at 04:10:55PM +0200, Veronika Molnarova wrote:
> Ping
Since this v2 series came from you, we need to have your Signed-off-by
in Michael's patch, please provide them in response to this message.
I'm adding them tentatively to my local branch, but I need your public
confirmation to follow the rules.
- Arnaldo
> On 7/2/24 13:08, vmolnaro@redhat.com wrote:
> > From: Veronika Molnarova <vmolnaro@redhat.com>
> >
> > Hello,
> >
> > rebased the patches for the current perf-tools-next branch in v2 as it
> > was not applying.
> >
> > Thanks for the notice,
> > Veronika
> >
> > Michael Petlan (2):
> > perf tests shell: Skip base_* dirs in test script search
> > perf testsuite: Install perf-report tests
> >
> > Veronika Molnarova (9):
> > perf testsuite: Merge settings files for shell tests
> > perf testsuite: Fix shellcheck warnings
> > perf testsuite probe: Add test for blacklisted kprobes handling
> > perf testsuite probe: Add test for basic perf-probe options
> > perf testsuite probe: Add test for invalid options
> > perf testsuite probe: Add test for line semantics
> > perf testsuite: Add common output checking helper
> > perf testsuite report: Add test for perf-report basic functionality
> > perf testsuite report: Add test case for perf report
> >
> > tools/perf/Makefile.perf | 2 +
> > tools/perf/tests/shell/base_probe/settings.sh | 48 -----
> > .../base_probe/test_adding_blacklisted.sh | 67 ++++++
> > .../shell/base_probe/test_adding_kernel.sh | 3 -
> > .../perf/tests/shell/base_probe/test_basic.sh | 80 ++++++++
> > .../shell/base_probe/test_invalid_options.sh | 79 ++++++++
> > .../shell/base_probe/test_line_semantics.sh | 55 +++++
> > tools/perf/tests/shell/base_report/setup.sh | 32 +++
> > .../shell/base_report/stderr-whitelist.txt | 5 +
> > .../tests/shell/base_report/test_basic.sh | 190 ++++++++++++++++++
> > .../shell/common/check_errors_whitelisted.pl | 51 +++++
> > tools/perf/tests/shell/common/init.sh | 31 ++-
> > tools/perf/tests/shell/common/settings.sh | 28 ++-
> > .../tests/shell/perftool-testsuite_report.sh | 23 +++
> > tools/perf/tests/tests-scripts.c | 2 +
> > 15 files changed, 640 insertions(+), 56 deletions(-)
> > delete mode 100644 tools/perf/tests/shell/base_probe/settings.sh
> > create mode 100755 tools/perf/tests/shell/base_probe/test_adding_blacklisted.sh
> > create mode 100755 tools/perf/tests/shell/base_probe/test_basic.sh
> > create mode 100755 tools/perf/tests/shell/base_probe/test_invalid_options.sh
> > create mode 100755 tools/perf/tests/shell/base_probe/test_line_semantics.sh
> > create mode 100755 tools/perf/tests/shell/base_report/setup.sh
> > create mode 100644 tools/perf/tests/shell/base_report/stderr-whitelist.txt
> > create mode 100755 tools/perf/tests/shell/base_report/test_basic.sh
> > create mode 100755 tools/perf/tests/shell/common/check_errors_whitelisted.pl
> > create mode 100755 tools/perf/tests/shell/perftool-testsuite_report.sh
> >
next prev parent reply other threads:[~2024-08-28 20:39 UTC|newest]
Thread overview: 43+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-24 13:07 [PATCH 00/11] perftool-testsuite 2nd batch Michael Petlan
2024-06-24 13:07 ` [PATCH 01/11] perf tests shell: Skip base_* dirs in test script search Michael Petlan
2024-06-24 13:08 ` [PATCH 02/11] perf testsuite: Merge settings files for shell tests Michael Petlan
2024-06-24 13:08 ` [PATCH 03/11] perf testsuite: Fix shellcheck warnings Michael Petlan
2024-06-24 13:08 ` [PATCH 04/11] perf testsuite probe: Add test for blacklisted kprobes handling Michael Petlan
2024-06-24 13:08 ` [PATCH 05/11] perf testsuite probe: Add test for basic perf-probe options Michael Petlan
2024-06-24 13:08 ` [PATCH 06/11] perf testsuite probe: Add test for invalid options Michael Petlan
2024-06-24 13:08 ` [PATCH 07/11] perf testsuite probe: Add test for line semantics Michael Petlan
2024-06-24 13:08 ` [PATCH 08/11] perf testsuite: Add common output checking helper Michael Petlan
2024-06-24 13:08 ` [PATCH 09/11] perf testsuite report: Add test for perf-report basic functionality Michael Petlan
2024-06-24 13:08 ` [PATCH 10/11] perf testsuite report: Add test case for perf report Michael Petlan
2024-06-24 13:08 ` [PATCH 11/11] perf testsuite: Install perf-report tests Michael Petlan
2024-06-27 22:29 ` [PATCH 00/11] perftool-testsuite 2nd batch Namhyung Kim
2024-07-02 11:08 ` [PATCH v2 " vmolnaro
2024-07-02 11:08 ` [PATCH v2 01/11] perf tests shell: Skip base_* dirs in test script search vmolnaro
2024-07-02 11:08 ` [PATCH v2 02/11] perf testsuite: Merge settings files for shell tests vmolnaro
2024-07-02 11:08 ` [PATCH v2 03/11] perf testsuite: Fix shellcheck warnings vmolnaro
2024-07-02 11:08 ` [PATCH v2 04/11] perf testsuite probe: Add test for blacklisted kprobes handling vmolnaro
2024-07-02 11:08 ` [PATCH v2 05/11] perf testsuite probe: Add test for basic perf-probe options vmolnaro
2024-07-02 11:08 ` [PATCH v2 06/11] perf testsuite probe: Add test for invalid options vmolnaro
2024-07-02 11:08 ` [PATCH v2 07/11] perf testsuite probe: Add test for line semantics vmolnaro
2024-07-02 11:08 ` [PATCH v2 08/11] perf testsuite: Add common output checking helper vmolnaro
2024-07-02 11:08 ` [PATCH v2 09/11] perf testsuite report: Add test for perf-report basic functionality vmolnaro
2024-07-02 11:08 ` [PATCH v2 10/11] perf testsuite report: Add test case for perf report vmolnaro
2024-07-02 11:08 ` [PATCH v2 11/11] perf testsuite: Install perf-report tests vmolnaro
2024-08-28 14:10 ` [PATCH v2 00/11] perftool-testsuite 2nd batch Veronika Molnarova
2024-08-28 20:39 ` Arnaldo Carvalho de Melo [this message]
2024-08-29 11:29 ` [PATCH v2 01/11] perf tests shell: Skip base_* dirs in test script search vmolnaro
2024-08-29 11:29 ` [PATCH v2 11/11] perf testsuite: Install perf-report tests vmolnaro
2024-08-30 15:27 ` [PATCH v2 00/11] perftool-testsuite 2nd batch Arnaldo Carvalho de Melo
2024-09-02 14:05 ` Veronika Molnarova
2024-09-02 14:31 ` Arnaldo Carvalho de Melo
2024-09-02 14:41 ` Arnaldo Carvalho de Melo
2024-09-02 14:42 ` Arnaldo Carvalho de Melo
2024-09-02 15:10 ` Veronika Molnarova
2024-09-02 18:46 ` Arnaldo Carvalho de Melo
2024-09-02 21:00 ` Arnaldo Carvalho de Melo
2024-09-05 15:11 ` Masami Hiramatsu
2024-09-05 19:04 ` Arnaldo Carvalho de Melo
2024-09-05 19:15 ` Arnaldo Carvalho de Melo
2024-09-12 13:07 ` Arnaldo Carvalho de Melo
2024-09-19 13:14 ` Veronika Molnarova
2024-09-26 22:33 ` Namhyung Kim
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=Zs-LEEutfp0hkjh5@x1 \
--to=acme@kernel.org \
--cc=acme@redhat.com \
--cc=atrajeev@linux.vnet.ibm.com \
--cc=irogers@google.com \
--cc=linux-perf-users@vger.kernel.org \
--cc=masami.hiramatsu.pt@hitachi.com \
--cc=mpetlan@redhat.com \
--cc=namhyung@kernel.org \
--cc=vmolnaro@redhat.com \
/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;
as well as URLs for NNTP newsgroup(s).