aboutsummaryrefslogtreecommitdiff
path: root/tests/moulitest_tests.c
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2019-11-04 01:42:30 +0100
committerCharles <sircharlesaze@gmail.com>2019-11-04 01:42:30 +0100
commitc667f5a6edc3a7f394d53f8e4c163cc19305dbad (patch)
treec867f7a77fbaf9f2aef3edaaaaf33058f6168485 /tests/moulitest_tests.c
parent299e643a5def328a7f6fb502a0b2477aa9505bd5 (diff)
downloadft_printf_test-c667f5a6edc3a7f394d53f8e4c163cc19305dbad.tar.gz
ft_printf_test-c667f5a6edc3a7f394d53f8e4c163cc19305dbad.tar.bz2
ft_printf_test-c667f5a6edc3a7f394d53f8e4c163cc19305dbad.zip
disabled weird tests
Diffstat (limited to 'tests/moulitest_tests.c')
-rw-r--r--tests/moulitest_tests.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/moulitest_tests.c b/tests/moulitest_tests.c
index 296f0ed..f6c839b 100644
--- a/tests/moulitest_tests.c
+++ b/tests/moulitest_tests.c
@@ -121,9 +121,9 @@ void test_moulitest_16(void)
void test_moulitest_18(void)
{
- char c;
+ /* char c; */
ASSERT_PRINTF("%s %d %p %% %x", "bonjour ", 42, &free, 42);
- ASSERT_PRINTF("%s%d%p%%%i%o%u%x%X%c","bonjour", 42, &c, 42, 42, 42, 42, 42, 'c');
+ /* ASSERT_PRINTF("%s%d%p%%%i%o%u%x%X%c","bonjour", 42, &c, 42, 42, 42, 42, 42, 'c'); */
}
void test_moulitest_40(void)
@@ -153,7 +153,6 @@ void test_moulitest_41(void)
ASSERT_PRINTF("%lli", LLONG_MAX);
ASSERT_PRINTF("%lli", LLONG_MIN);
ASSERT_PRINTF("%llu, %llu", 0llu, ULLONG_MAX);
- ASSERT_PRINTF("%llo, %llo", 0llu, ULLONG_MAX);
ASSERT_PRINTF("%llx, %llx", 0llu, ULLONG_MAX);
ASSERT_PRINTF("%llX, %llX", 0llu, ULLONG_MAX);
}