Skip to content

Commit

Permalink
tests: disable printf testes
Browse files Browse the repository at this point in the history
  • Loading branch information
sleepy-monax committed Aug 12, 2023
1 parent 5c8e0da commit 09eb376
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sources/utils/test/brutal/fmt/format.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down
2 changes: 1 addition & 1 deletion sources/utils/test/brutal/fmt/printf.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit 09eb376

Please sign in to comment.