From: Arthur Grillo Queiroz Cabral <arthurgrillo@riseup.net>
To: Rae Moar <rmoar@google.com>,
shuah@kernel.org, davidgow@google.com, dlatypov@google.com,
brendan.higgins@linux.dev
Cc: linux-kselftest@vger.kernel.org, kunit-dev@googlegroups.com,
linux-kernel@vger.kernel.org, keescook@chromium.org,
linux-hardening@vger.kernel.org, jstultz@google.com,
tglx@linutronix.de, sboyd@kernel.org
Subject: Re: [PATCH v3 0/9] kunit: Add test attributes API
Date: Wed, 26 Jul 2023 11:56:57 -0300 [thread overview]
Message-ID: <e87a70f7-9b7e-e5dc-bc00-8f8ba76f0476@riseup.net> (raw)
In-Reply-To: <20230725212522.1622716-1-rmoar@google.com>
On 25/07/23 18:25, 'Rae Moar' via KUnit Development wrote:
> Hello everyone,
>
> This patch series adds a test attributes framework to KUnit.
>
> There has been interest in filtering out "slow" KUnit tests. Most notably,
> a new config, CONFIG_MEMCPY_SLOW_KUNIT_TEST, has been added to exclude a
> particularly slow memcpy test
> (https://lore.kernel.org/all/20230118200653.give.574-kees@kernel.org/).
>
> This attributes framework can be used to save and access test associated
> data, including whether a test is slow. These attributes are reportable
> (via KTAP and command line output) and are also filterable.
>
> This framework is designed to allow for the addition of other attributes in
> the future. These attributes could include whether the test can be run
> concurrently, test file path, etc.
>
> To try out the framework I suggest running:
> "./tools/testing/kunit/kunit.py run --filter speed!=slow"
>
> This patch series was originally sent out as an RFC. Here is a link to the
> RFC v2:
> https://lore.kernel.org/all/20230707210947.1208717-1-rmoar@google.com/
>
> Thanks!
> Rae
>
Great addition to the KUnit framework!
On all the patch set
Reviewed-by: Arthur Grillo <arthurgrillo@riseup.net>
Best Regards,
~Arthur Grillo
> Rae Moar (9):
> kunit: Add test attributes API structure
> kunit: Add speed attribute
> kunit: Add module attribute
> kunit: Add ability to filter attributes
> kunit: tool: Add command line interface to filter and report
> attributes
> kunit: memcpy: Mark tests as slow using test attributes
> kunit: time: Mark test as slow using test attributes
> kunit: add tests for filtering attributes
> kunit: Add documentation of KUnit test attributes
>
> Documentation/dev-tools/kunit/run_wrapper.rst | 12 +
> .../dev-tools/kunit/running_tips.rst | 166 +++++++
> include/kunit/attributes.h | 50 +++
> include/kunit/test.h | 70 ++-
> kernel/time/time_test.c | 2 +-
> lib/Kconfig.debug | 3 +
> lib/kunit/Makefile | 3 +-
> lib/kunit/attributes.c | 418 ++++++++++++++++++
> lib/kunit/executor.c | 114 ++++-
> lib/kunit/executor_test.c | 128 +++++-
> lib/kunit/kunit-example-test.c | 9 +
> lib/kunit/test.c | 27 +-
> lib/memcpy_kunit.c | 8 +-
> tools/testing/kunit/kunit.py | 70 ++-
> tools/testing/kunit/kunit_kernel.py | 8 +-
> tools/testing/kunit/kunit_parser.py | 11 +-
> tools/testing/kunit/kunit_tool_test.py | 39 +-
> 17 files changed, 1062 insertions(+), 76 deletions(-)
> create mode 100644 include/kunit/attributes.h
> create mode 100644 lib/kunit/attributes.c
>
>
> base-commit: 64bd4641310c41a1ecf07c13c67bc0ed61045dfd
next prev parent reply other threads:[~2023-07-26 14:57 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-25 21:25 [PATCH v3 0/9] kunit: Add test attributes API Rae Moar
2023-07-25 21:25 ` [PATCH v3 1/9] kunit: Add test attributes API structure Rae Moar
2023-07-25 21:25 ` [PATCH v3 2/9] kunit: Add speed attribute Rae Moar
2023-07-25 21:25 ` [PATCH v3 3/9] kunit: Add module attribute Rae Moar
2023-07-25 21:25 ` [PATCH v3 4/9] kunit: Add ability to filter attributes Rae Moar
2023-08-29 22:46 ` Guenter Roeck
2023-08-30 0:24 ` David Gow
2023-08-30 1:48 ` Guenter Roeck
2023-07-25 21:25 ` [PATCH v3 5/9] kunit: tool: Add command line interface to filter and report attributes Rae Moar
2023-07-25 21:25 ` [PATCH v3 6/9] kunit: memcpy: Mark tests as slow using test attributes Rae Moar
2023-07-25 21:25 ` [PATCH v3 7/9] kunit: time: Mark test " Rae Moar
2023-07-25 21:25 ` [PATCH v3 8/9] kunit: add tests for filtering attributes Rae Moar
2023-07-25 21:25 ` [PATCH v3 9/9] kunit: Add documentation of KUnit test attributes Rae Moar
2023-07-26 14:56 ` Arthur Grillo Queiroz Cabral [this message]
2023-07-26 14:57 ` [PATCH v3 0/9] kunit: Add test attributes API Arthur Grillo Queiroz Cabral
2023-07-28 10:38 ` Guenter Roeck
2023-07-29 7:53 ` David Gow
2023-07-29 13:55 ` Guenter Roeck
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=e87a70f7-9b7e-e5dc-bc00-8f8ba76f0476@riseup.net \
--to=arthurgrillo@riseup.net \
--cc=brendan.higgins@linux.dev \
--cc=davidgow@google.com \
--cc=dlatypov@google.com \
--cc=jstultz@google.com \
--cc=keescook@chromium.org \
--cc=kunit-dev@googlegroups.com \
--cc=linux-hardening@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-kselftest@vger.kernel.org \
--cc=rmoar@google.com \
--cc=sboyd@kernel.org \
--cc=shuah@kernel.org \
--cc=tglx@linutronix.de \
/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