From: Willy Tarreau <w@1wt.eu>
To: "Thomas Weißschuh" <linux@weissschuh.net>
Cc: Shuah Khan <shuah@kernel.org>,
linux-kernel@vger.kernel.org, linux-kselftest@vger.kernel.org
Subject: Re: [PATCH 3/3] tools/nolibc: add testcases for vfprintf
Date: Sun, 2 Apr 2023 09:51:10 +0200 [thread overview]
Message-ID: <ZCkz7lf9+EuBkSud@1wt.eu> (raw)
In-Reply-To: <20230328-nolibc-printf-test-v1-3-d7290ec893dd@weissschuh.net>
On Tue, Mar 28, 2023 at 09:01:31PM +0000, Thomas Weißschuh wrote:
> vfprintf() is complex and so far did not have proper tests.
This is an excellent idea, I totally agree, and I wouldn't be surprised
if there were still bugs there.
> + switch (test + __LINE__ + 1) {
> + CASE_TEST(empty); EXPECT_VFPRINTF(0, "", ""); break;
> + CASE_TEST(simple); EXPECT_VFPRINTF(3, "foo", "foo"); break;
> + CASE_TEST(string); EXPECT_VFPRINTF(3, "foo", "%s", "foo"); break;
> + CASE_TEST(number); EXPECT_VFPRINTF(4, "1234", "%d", 1234); break;
> + CASE_TEST(negnumber); EXPECT_VFPRINTF(5, "-1234", "%d", -1234); break;
> + CASE_TEST(unsigned); EXPECT_VFPRINTF(5, "12345", "%u", 12345); break;
> + CASE_TEST(char); EXPECT_VFPRINTF(1, "c", "%c", 'c'); break;
> + CASE_TEST(hex); EXPECT_VFPRINTF(1, "f", "%x", 0xf); break;
> + CASE_TEST(pointer); EXPECT_VFPRINTF(3, "0x0", "%p", NULL); break;
I don't see a reason why not to move them to the stdlib category, since
these tests are there to validate that the libc-provided functions do
work. Maybe you intended to further extend it ? In this case maybe we
could move that to an "stdio" category then but I'd rather avoid having
one category per function or it will quickly become annoying to select
groups of tests. So let's just prefix these test names with "printf_"
and either merge them with "stdlib" or name the category "stdio", as
you prefer.
Thank you!
Willy
next prev parent reply other threads:[~2023-04-02 7:51 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-03-28 21:01 [PATCH 0/3] " Thomas Weißschuh
2023-03-28 21:01 ` [PATCH 1/3] tools/nolibc: add wrapper for memfd_create Thomas Weißschuh
2023-03-28 21:01 ` [PATCH 2/3] tools/nolibc: let FILE streams contain an fd Thomas Weißschuh
2023-04-02 7:45 ` Willy Tarreau
2023-04-02 12:11 ` Thomas Weißschuh
2023-03-28 21:01 ` [PATCH 3/3] tools/nolibc: add testcases for vfprintf Thomas Weißschuh
2023-04-02 7:51 ` Willy Tarreau [this message]
2023-04-02 12:18 ` Thomas Weißschuh
2023-04-02 12:31 ` Willy Tarreau
2023-04-02 8:00 ` Willy Tarreau
2023-04-02 12:18 ` 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=ZCkz7lf9+EuBkSud@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
all inboxes | Powered by JetHome®