From nobody Tue Dec 30 13:27:36 2025 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id C5705C072A2 for ; Wed, 15 Nov 2023 21:08:35 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1344842AbjKOVIg (ORCPT ); Wed, 15 Nov 2023 16:08:36 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:41874 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235606AbjKOVIa (ORCPT ); Wed, 15 Nov 2023 16:08:30 -0500 Received: from todd.t-8ch.de (todd.t-8ch.de [IPv6:2a01:4f8:c010:41de::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 5ABBAB7; Wed, 15 Nov 2023 13:08:26 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=weissschuh.net; s=mail; t=1700082503; bh=l0DjQT50wWPCx8bAIk7vWf2LX6LEwzHNYtmJlA8L6J0=; h=From:Date:Subject:References:In-Reply-To:To:Cc:From; b=QxQFiyVsIc6a5YV70upXPlmTRX4ZkcpR0v8ekrkfswJGaLF2P/0k24GAnrzTFbT7c j9IXsg6HyOtECGGmtWxa3NLU+qqTvrzdRKUlSSC+L4H2mgF4IMw5jxroh8vxY0Nbki fHm/MF7imxuvdmmGYaYZgqY6sYsWhd1nBQsXIhxc= From: =?utf-8?q?Thomas_Wei=C3=9Fschuh?= Date: Wed, 15 Nov 2023 22:08:21 +0100 Subject: [PATCH RFC 3/3] selftests/nolibc: migrate vfprintf tests to new harness MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Message-Id: <20231115-nolibc-harness-v1-3-4d61382d9bf3@weissschuh.net> References: <20231115-nolibc-harness-v1-0-4d61382d9bf3@weissschuh.net> In-Reply-To: <20231115-nolibc-harness-v1-0-4d61382d9bf3@weissschuh.net> To: Willy Tarreau , Shuah Khan Cc: linux-kernel@vger.kernel.org, linux-kselftest@vger.kernel.org, =?utf-8?q?Thomas_Wei=C3=9Fschuh?= X-Mailer: b4 0.12.4 X-Developer-Signature: v=1; a=ed25519-sha256; t=1700082502; l=4412; i=linux@weissschuh.net; s=20221212; h=from:subject:message-id; bh=l0DjQT50wWPCx8bAIk7vWf2LX6LEwzHNYtmJlA8L6J0=; b=D5ubOmECihDPDmd+UIRvHxT53OEDtxVHsJ8JxG5/5/6M0grUKMZjRz3CZcM3KiTTNpKB0bKp7 iBnTQFNFLhQCExPNZs6sZVF7T6HxzJEll+TB2zy9EwZStzdAmVmzyaB X-Developer-Key: i=linux@weissschuh.net; a=ed25519; pk=KcycQgFPX2wGR5azS7RhpBqedglOZVgRPfdFSPB1LNw= Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Migrate part of nolibc-test.c to the new test harness. Signed-off-by: Thomas Wei=C3=9Fschuh --- tools/testing/selftests/nolibc/nolibc-test.c | 74 +++++++++++-------------= ---- 1 file changed, 28 insertions(+), 46 deletions(-) diff --git a/tools/testing/selftests/nolibc/nolibc-test.c b/tools/testing/s= elftests/nolibc/nolibc-test.c index 6c1b42b58e3e..c0e7e090a05a 100644 --- a/tools/testing/selftests/nolibc/nolibc-test.c +++ b/tools/testing/selftests/nolibc/nolibc-test.c @@ -1039,10 +1039,13 @@ int run_stdlib(int min, int max) return ret; } =20 -#define EXPECT_VFPRINTF(c, expected, fmt, ...) \ - ret +=3D expect_vfprintf(llen, c, expected, fmt, ##__VA_ARGS__) +#define ASSERT_VFPRINTF(c, expected, fmt, ...) \ + enum RESULT res =3D assert_vfprintf(_metadata, c, expected, fmt, ##__VA_A= RGS__); \ + if (res =3D=3D SKIPPED) SKIP(return); \ + if (res =3D=3D FAIL) FAIL(return); =20 -static int expect_vfprintf(int llen, int c, const char *expected, const ch= ar *fmt, ...) +static enum RESULT assert_vfprintf(struct __test_metadata *_metadata, int = c, + const char *expected, const char *fmt, ...) { int ret, fd; ssize_t w, r; @@ -1051,25 +1054,20 @@ static int expect_vfprintf(int llen, int c, const c= har *expected, const char *fm va_list args; =20 fd =3D open("/tmp", O_TMPFILE | O_EXCL | O_RDWR, 0600); - if (fd =3D=3D -1) { - result(llen, SKIPPED); - return 0; - } + if (fd =3D=3D -1) + return SKIPPED; =20 memfile =3D fdopen(fd, "w+"); - if (!memfile) { - result(llen, FAIL); - return 1; - } + if (!memfile) + return FAIL; =20 va_start(args, fmt); w =3D vfprintf(memfile, fmt, args); va_end(args); =20 if (w !=3D c) { - llen +=3D printf(" written(%d) !=3D %d", (int)w, c); - result(llen, FAIL); - return 1; + _metadata->exe.llen +=3D printf(" written(%d) !=3D %d", (int)w, c); + return FAIL; } =20 fflush(memfile); @@ -1080,46 +1078,30 @@ static int expect_vfprintf(int llen, int c, const c= har *expected, const char *fm fclose(memfile); =20 if (r !=3D w) { - llen +=3D printf(" written(%d) !=3D read(%d)", (int)w, (int)r); - result(llen, FAIL); - return 1; + _metadata->exe.llen +=3D printf(" written(%d) !=3D read(%d)", (int)w, (i= nt)r); + return FAIL; } =20 buf[r] =3D '\0'; - llen +=3D printf(" \"%s\" =3D \"%s\"", expected, buf); + _metadata->exe.llen +=3D printf(" \"%s\" =3D \"%s\"", expected, buf); ret =3D strncmp(expected, buf, c); =20 - result(llen, ret ? FAIL : OK); - return ret; + return ret ? FAIL : OK; } =20 -static int run_vfprintf(int min, int max) +TEST(vfprintf, empty) { ASSERT_VFPRINTF(0, "", ""); } +TEST(vfprintf, simple) { ASSERT_VFPRINTF(3, "foo", "foo"); } +TEST(vfprintf, string) { ASSERT_VFPRINTF(3, "foo", "%s", "foo"); } +TEST(vfprintf, number) { ASSERT_VFPRINTF(4, "1234", "%d", 1234); } +TEST(vfprintf, negnumber) { ASSERT_VFPRINTF(5, "-1234", "%d", -1234); } +TEST(vfprintf, unsigned) { ASSERT_VFPRINTF(5, "12345", "%u", 12345); } +TEST(vfprintf, char) { ASSERT_VFPRINTF(1, "c", "%c", 'c'); } +TEST(vfprintf, hex) { ASSERT_VFPRINTF(1, "f", "%x", 0xf); } +TEST(vfprintf, pointer) { ASSERT_VFPRINTF(3, "0x1", "%p", (void *) 0x1);= } + +int run_vfprintf(int min, int max) { - int test; - int ret =3D 0; - - for (test =3D min; test >=3D 0 && test <=3D max; test++) { - int llen =3D 0; /* line length */ - - /* avoid leaving empty lines below, this will insert holes into - * test numbers. - */ - 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, "0x1", "%p", (void *) 0x1); = break; - case __LINE__: - return ret; /* must be last */ - /* note: do not set any defaults so as to permit holes above */ - } - } - return ret; + return run_test_suite("vfprintf", min, max); } =20 static int smash_stack(void) --=20 2.42.1