mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Shuah Khan <skhan@linuxfoundation.org>
To: "Thomas Weißschuh" <thomas.weissschuh@linutronix.de>,
	"Shuah Khan" <shuah@kernel.org>, "Willy Tarreau" <w@1wt.eu>,
	"Thomas Weißschuh" <linux@weissschuh.net>
Cc: linux-kernel@vger.kernel.org, linux-kselftest@vger.kernel.org,
	Shuah Khan <skhan@linuxfoundation.org>
Subject: Re: [PATCH v2 00/32] kselftest harness and nolibc compatibility
Date: Thu, 10 Apr 2025 09:19:36 -0600	[thread overview]
Message-ID: <04bf6bbc-d813-488d-9117-def19717b8b5@linuxfoundation.org> (raw)
In-Reply-To: <20250407-nolibc-kselftest-harness-v2-0-f8812f76e930@linutronix.de>

On 4/7/25 00:52, Thomas Weißschuh wrote:
> Nolibc is useful for selftests as the test programs can be very small,
> and compiled with just a kernel crosscompiler, without userspace support.
> Currently nolibc is only usable with kselftest.h, not the more
> convenient to use kselftest_harness.h
> This series provides this compatibility by adding new features to nolibc
> and removing the usage of problematic features from the harness.
> 
> The first half of the series are changes to the harness, the second one
> are for nolibc. Both parts are very independent and should go through
> different trees.
> The last patch is not meant to be applied and serves as test that
> everything works together correctly.
> 
> Signed-off-by: Thomas Weißschuh <thomas.weissschuh@linutronix.de>
> ---
> Changes in v2:
> - Rebase unto v6.15-rc1
> - Rename internal nolibc symbols
> - Handle edge case of waitpid(INT_MIN) == ESRCH
> - Fix arm configurations for final testing patch
> - Clean up global getopt.h variable declarations
> - Add Acks from Willy
> - Link to v1: https://lore.kernel.org/r/20250304-nolibc-kselftest-harness-v1-0-adca7cd231e2@linutronix.de

Thank you. I am going to start reviewing the series. It could take
me a few days to get through all 32 patches. :)

> 
> ---
> Thomas Weißschuh (32):
>        selftests: harness: Add harness selftest
>        selftests: harness: Use C89 comment style
>        selftests: harness: Ignore unused variant argument warning
>        selftests: harness: Mark functions without prototypes static
>        selftests: harness: Remove inline qualifier for wrappers
>        selftests: harness: Remove dependency on libatomic
>        selftests: harness: Implement test timeouts through pidfd
>        selftests: harness: Don't set setup_completed for fixtureless tests
>        selftests: harness: Always provide "self" and "variant"
>        selftests: harness: Move teardown conditional into test metadata
>        selftests: harness: Add teardown callback to test metadata
>        selftests: harness: Stop using setjmp()/longjmp()
>        selftests: harness: Guard includes on nolibc
>        tools/nolibc: handle intmax_t/uintmax_t in printf
>        tools/nolibc: use intmax definitions from compiler
>        tools/nolibc: use pselect6_time64 if available
>        tools/nolibc: use ppoll_time64 if available
>        tools/nolibc: add tolower() and toupper()
>        tools/nolibc: add _exit()
>        tools/nolibc: add setpgrp()
>        tools/nolibc: implement waitpid() in terms of waitid()
>        Revert "selftests/nolibc: use waitid() over waitpid()"
>        tools/nolibc: add dprintf() and vdprintf()
>        tools/nolibc: add getopt()
>        tools/nolibc: allow different write callbacks in printf
>        tools/nolibc: allow limiting of printf destination size
>        tools/nolibc: add snprintf() and friends
>        selftests/nolibc: use snprintf() for printf tests
>        selftests/nolibc: rename vfprintf test suite
>        selftests/nolibc: add test for snprintf() truncation
>        tools/nolibc: implement width padding in printf()
>        HACK: selftests/nolibc: demonstrate usage of the kselftest harness
> 
>   tools/include/nolibc/Makefile                      |    1 +
>   tools/include/nolibc/getopt.h                      |  101 ++
>   tools/include/nolibc/nolibc.h                      |    1 +
>   tools/include/nolibc/stdint.h                      |    4 +-
>   tools/include/nolibc/stdio.h                       |  127 +-
>   tools/include/nolibc/string.h                      |   17 +
>   tools/include/nolibc/sys.h                         |  105 +-
>   tools/testing/selftests/Makefile                   |    1 +
>   tools/testing/selftests/kselftest/.gitignore       |    1 +
>   tools/testing/selftests/kselftest/Makefile         |    6 +
>   .../testing/selftests/kselftest/harness-selftest.c |  129 ++
>   .../selftests/kselftest/harness-selftest.expected  |   62 +
>   .../selftests/kselftest/harness-selftest.sh        |   14 +
>   tools/testing/selftests/kselftest_harness.h        |  181 +-
>   tools/testing/selftests/nolibc/Makefile            |   13 +-
>   tools/testing/selftests/nolibc/harness-selftest.c  |    1 +
>   tools/testing/selftests/nolibc/nolibc-test.c       | 1729 +-------------------
>   tools/testing/selftests/nolibc/run-tests.sh        |    2 +-
>   18 files changed, 635 insertions(+), 1860 deletions(-)
> ---
> base-commit: 0af2f6be1b4281385b618cb86ad946eded089ac8
> change-id: 20250130-nolibc-kselftest-harness-8b2c8cac43bf
> 

thanks,
-- Shuah

  parent reply	other threads:[~2025-04-10 15:19 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-04-07  6:52 Thomas Weißschuh
2025-04-07  6:52 ` [PATCH v2 01/32] selftests: harness: Add harness selftest Thomas Weißschuh
2025-04-10 15:19   ` Shuah Khan
2025-04-07  6:52 ` [PATCH v2 02/32] selftests: harness: Use C89 comment style Thomas Weißschuh
2025-04-10 15:33   ` Shuah Khan
2025-04-07  6:52 ` [PATCH v2 03/32] selftests: harness: Ignore unused variant argument warning Thomas Weißschuh
2025-04-10 15:33   ` Shuah Khan
2025-04-07  6:52 ` [PATCH v2 04/32] selftests: harness: Mark functions without prototypes static Thomas Weißschuh
2025-04-07  6:52 ` [PATCH v2 05/32] selftests: harness: Remove inline qualifier for wrappers Thomas Weißschuh
2025-04-07  6:52 ` [PATCH v2 06/32] selftests: harness: Remove dependency on libatomic Thomas Weißschuh
2025-04-07  6:52 ` [PATCH v2 07/32] selftests: harness: Implement test timeouts through pidfd Thomas Weißschuh
2025-04-07  6:52 ` [PATCH v2 08/32] selftests: harness: Don't set setup_completed for fixtureless tests Thomas Weißschuh
2025-04-07  6:52 ` [PATCH v2 09/32] selftests: harness: Always provide "self" and "variant" Thomas Weißschuh
2025-04-07  6:52 ` [PATCH v2 10/32] selftests: harness: Move teardown conditional into test metadata Thomas Weißschuh
2025-04-07  6:52 ` [PATCH v2 11/32] selftests: harness: Add teardown callback to " Thomas Weißschuh
2025-04-07  6:52 ` [PATCH v2 12/32] selftests: harness: Stop using setjmp()/longjmp() Thomas Weißschuh
2025-04-07  6:52 ` [PATCH v2 13/32] selftests: harness: Guard includes on nolibc Thomas Weißschuh
2025-04-07  6:52 ` [PATCH v2 14/32] tools/nolibc: handle intmax_t/uintmax_t in printf Thomas Weißschuh
2025-04-07  6:52 ` [PATCH v2 15/32] tools/nolibc: use intmax definitions from compiler Thomas Weißschuh
2025-04-07  6:52 ` [PATCH v2 16/32] tools/nolibc: use pselect6_time64 if available Thomas Weißschuh
2025-04-07  6:52 ` [PATCH v2 17/32] tools/nolibc: use ppoll_time64 " Thomas Weißschuh
2025-04-07  6:52 ` [PATCH v2 18/32] tools/nolibc: add tolower() and toupper() Thomas Weißschuh
2025-04-07  6:52 ` [PATCH v2 19/32] tools/nolibc: add _exit() Thomas Weißschuh
2025-04-07  6:52 ` [PATCH v2 20/32] tools/nolibc: add setpgrp() Thomas Weißschuh
2025-04-07  6:52 ` [PATCH v2 21/32] tools/nolibc: implement waitpid() in terms of waitid() Thomas Weißschuh
2025-04-07  6:52 ` [PATCH v2 22/32] Revert "selftests/nolibc: use waitid() over waitpid()" Thomas Weißschuh
2025-04-07  6:52 ` [PATCH v2 23/32] tools/nolibc: add dprintf() and vdprintf() Thomas Weißschuh
2025-04-07  6:52 ` [PATCH v2 24/32] tools/nolibc: add getopt() Thomas Weißschuh
2025-04-07  6:52 ` [PATCH v2 25/32] tools/nolibc: allow different write callbacks in printf Thomas Weißschuh
2025-04-07  6:52 ` [PATCH v2 26/32] tools/nolibc: allow limiting of printf destination size Thomas Weißschuh
2025-04-07  6:52 ` [PATCH v2 27/32] tools/nolibc: add snprintf() and friends Thomas Weißschuh
2025-04-07  6:52 ` [PATCH v2 28/32] selftests/nolibc: use snprintf() for printf tests Thomas Weißschuh
2025-04-07  6:52 ` [PATCH v2 29/32] selftests/nolibc: rename vfprintf test suite Thomas Weißschuh
2025-04-07  6:52 ` [PATCH v2 30/32] selftests/nolibc: add test for snprintf() truncation Thomas Weißschuh
2025-04-07  6:52 ` [PATCH v2 31/32] tools/nolibc: implement width padding in printf() Thomas Weißschuh
2025-04-07  6:52 ` [PATCH v2 32/32] HACK: selftests/nolibc: demonstrate usage of the kselftest harness Thomas Weißschuh
2025-04-10 15:19 ` Shuah Khan [this message]
2025-04-10 20:01   ` [PATCH v2 00/32] kselftest harness and nolibc compatibility Shuah Khan

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=04bf6bbc-d813-488d-9117-def19717b8b5@linuxfoundation.org \
    --to=skhan@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-kselftest@vger.kernel.org \
    --cc=linux@weissschuh.net \
    --cc=shuah@kernel.org \
    --cc=thomas.weissschuh@linutronix.de \
    --cc=w@1wt.eu \
    /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®