public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Willy Tarreau <w@1wt.eu>
To: "Thomas Weißschuh" <linux@weissschuh.net>
Cc: Shuah Khan <shuah@kernel.org>,
	linux-kselftest@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] selftests/nolibc: only run constructor tests on nolibc
Date: Sat, 22 Feb 2025 10:38:51 +0100	[thread overview]
Message-ID: <20250222093851.GA13258@1wt.eu> (raw)
In-Reply-To: <670b08a4-9bc5-4700-94bb-272fda5c59d7@t-8ch.de>

Hi Thomas,

On Mon, Feb 17, 2025 at 10:24:11PM +0100, Thomas Weißschuh wrote:
> On 2025-02-16 10:39:40+0100, Willy Tarreau wrote:
> > On Wed, Feb 12, 2025 at 07:01:01PM +0100, Thomas Weißschuh wrote:
> > > The nolibc testsuite can be run against other libcs to test for
> > > interoperability. Some aspects of the constructor execution are not
> > > standardized and musl does not provide all tested feature, for one it
> > > does not provide arguments to the constructors, anymore?
> > >
> > > Skip the constructor tests on non-nolibc configurations.
> > 
> > I'm not much surprised, I've always avoided arguments in my use of
> > constructors due to a lack of portability. However the patch disables
> > all constructors tests, while I'm seeing that the linkage_test version
> > does not make use of arguments, though there is an implied expectation
> > that they're executed in declaration order, which is not granted.
> 
> The tests are written specifically to test for execution order.
> While we can not rely on the order for other libcs, the idea was to
> expect a given order for the nolibc implementation.

OK.

> > I'm wondering if we shouldn't make the tests more robust:
> >   1) explicitly set linkage_test_constructor_test_value to zero in the
> >      declaration, because here it's not set so we have no guarantee
> >      (we're not in the kernel)
> 
> Ack.
> 
> >   2) only add values to check for cumulated values (e.g. |1 in const1,
> >      |2 in const2) and verify that the result is properly 3
> 
> This would stop validating the order.

That was my purpose but OK I got it. Then there's another option which
preserves the order and even gives history:

  __attribute__((constructor))
  static void constructor1(void)
  {
      constructor_test_value = constructor_test_value * 0x10 + 1;
  }

  __attribute__((constructor))
  static void constructor2(void)
  {
      constructor_test_value = constructor_test_value * 0x10 + 2;
  }
 
Then if executed in the right order, you'll find 0x12. If both
are executed in any order, it will always be >= 0x10. If only one
is executed, it will be < 0x10, and if none is executed, it's 0.

Willy

  reply	other threads:[~2025-02-22  9:39 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-02-12 18:01 [PATCH] selftests/nolibc: only run constructor tests on nolibc Thomas Weißschuh
2025-02-16  9:39 ` Willy Tarreau
2025-02-17 21:24   ` Thomas Weißschuh
2025-02-22  9:38     ` Willy Tarreau [this message]
2025-02-25  9:37       ` Thomas Weißschuh
2025-03-01 11:07         ` Willy Tarreau
2025-03-02 21:56           ` Thomas Weißschuh

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=20250222093851.GA13258@1wt.eu \
    --to=w@1wt.eu \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-kselftest@vger.kernel.org \
    --cc=linux@weissschuh.net \
    --cc=shuah@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