inet_pton tests, fix regression test case
[libc-test] / src / functional / inet_pton.c
index 0857b82..b31faed 100644 (file)
@@ -28,9 +28,9 @@ static void tohex(char *d, void *s, int n)
 
 #define V6(src,ret,hex) do{\
        int r; \
-       char binaddr[16]; \
-       char hexaddr[40]; \
-       char txtaddr[60]; \
+       char binaddr[16]={0}; \
+       char hexaddr[40]={0}; \
+       char txtaddr[60]={0}; \
        \
        r=inet_pton(AF_INET6,src,binaddr); \
        if (r!=ret) \
@@ -57,7 +57,7 @@ static void tohex(char *d, void *s, int n)
        int r; \
        uint32_t a; \
        struct in_addr in; \
-       char buf[20]; \
+       char buf[20]={0}; \
        char *p; \
        \
        a=inet_addr(src); \
@@ -140,6 +140,13 @@ V6(".192.168.1.1", 0, "")
 V6(":.192.168.1.1", 0, "")
 V6("a:0b:00c:000d:E:F::", 1, "000a000b000c000d000e000f00000000")
 V6("a:0b:00c:000d:0000e:f::", 0, "")
+V6("1:2:3:4:5:6::", 1, "00010002000300040005000600000000")
+V6("1:2:3:4:5:6:7::", 1, "00010002000300040005000600070000")
+V6("1:2:3:4:5:6:7:8::", 0, "")
+V6("1:2:3:4:5:6:7::9", 0, "")
+V6("::1:2:3:4:5:6", 1, "00000000000100020003000400050006")
+V6("::1:2:3:4:5:6:7", 1, "00000001000200030004000500060007")
+V6("::1:2:3:4:5:6:7:8", 0, "")
 V6("a:b::c:d:e:f", 1, "000a000b00000000000c000d000e000f")
 V6("ffff:c0a8:5e4", 0, "")
 V6(":ffff:c0a8:5e4", 0, "")