From 09eb376ded5f827361269cf9628b2f337cf8ea50 Mon Sep 17 00:00:00 2001 From: VAN BOSSUYT Nicolas Date: Sat, 12 Aug 2023 08:38:07 +0200 Subject: [PATCH] tests: disable printf testes --- sources/utils/test/brutal/fmt/format.c | 2 +- sources/utils/test/brutal/fmt/printf.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sources/utils/test/brutal/fmt/format.c b/sources/utils/test/brutal/fmt/format.c index e305fdf46..d18696497 100644 --- a/sources/utils/test/brutal/fmt/format.c +++ b/sources/utils/test/brutal/fmt/format.c @@ -7,7 +7,7 @@ expect_str_equal$(str$(EXPECTED), fmt_str$(test_use_alloc(), str$(FORMAT), __VA_ARGS__)); \ } -test$(fmt_format) +test$(fmt_format, TEST_DISABLED) { TEST_CASE("hello, world", "hello, world"); TEST_CASE("hello, world", "hello, {}", "world"); diff --git a/sources/utils/test/brutal/fmt/printf.c b/sources/utils/test/brutal/fmt/printf.c index e5c013ddb..7cb71bc3e 100644 --- a/sources/utils/test/brutal/fmt/printf.c +++ b/sources/utils/test/brutal/fmt/printf.c @@ -7,7 +7,7 @@ expect_str_equal$(str$(EXPECTED), fmt_sprintf(test_use_alloc(), str$(FORMAT), __VA_ARGS__)); \ } -test$(fmt_printf) +test$(fmt_printf, TEST_DISABLED) { TEST_CASE("hello world", "hello world", str$("world")); TEST_CASE("hello world", "hello %s", "world");