diff options
author | Marvin Borner | 2021-05-24 13:44:05 +0200 |
---|---|---|
committer | Marvin Borner | 2021-05-24 13:44:05 +0200 |
commit | 6ee053435d40a844656a0c4b7ab7617d29b5d759 (patch) | |
tree | ee7565e953a1e43688fe4857b1c65d364ea7ac09 /apps | |
parent | cf1a6ed2998eb22b112f233d65975c27fa5ced5b (diff) |
Added better float support
Diffstat (limited to 'apps')
-rw-r--r-- | apps/test/main.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/apps/test/main.c b/apps/test/main.c index 2101412..29ec26e 100644 --- a/apps/test/main.c +++ b/apps/test/main.c @@ -53,22 +53,6 @@ TEST(crypto) EQUALS(memcmp(md5_res, md5_text, 16), 0); } -TEST(conv) -{ - char buf1[1] = { 0 }; - char buf2[7] = { 0 }; - char buf3[5] = { 0 }; - char buf4[3] = { 0 }; - EQUALS(atoi("42"), 42); - EQUALS_STR(htoa(0x42), "42"); - EQUALS(htoi("42"), 0x42); - EQUALS_STR(itoa(42), "42"); - EQUALS_STR(conv_base(42, buf1, 0, 0), ""); - EQUALS_STR(conv_base(42, buf2, 2, 0), "101010"); - EQUALS_STR(conv_base(424242, buf3, 36, 0), "93ci"); - EQUALS_STR(conv_base(0xffffffff, buf4, 10, 1), "-1"); -} - TEST(mem) { const char *str0 = ""; @@ -92,7 +76,6 @@ int main(void) { test_math(); test_crypto(); - test_conv(); test_mem(); /* fuzz(); */ |