1 /* Test for inet_network.
2 Copyright (C) 2000-2015 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Andreas Jaeger <aj@suse.de>, 2000.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
22 #include <sys/socket.h>
23 #include <netinet/in.h>
24 #include <arpa/inet.h>
32 {"1.0.0.0", 0x1000000},
36 {"192.168.0.0", 0xC0A80000},
39 /* Now some invalid addresses. */
41 {"1 bar", INADDR_NONE
}, /* Bug 15277. */
42 {"141.30.225.2800", INADDR_NONE
},
43 {"141.76.1.1.1", INADDR_NONE
},
44 {"141.76.1.11.", INADDR_NONE
},
45 {"1410", INADDR_NONE
},
46 {"1.1410", INADDR_NONE
},
47 {"1.1410.", INADDR_NONE
},
48 {"1.1410", INADDR_NONE
},
49 {"141.76.1111", INADDR_NONE
},
50 {"141.76.1111.", INADDR_NONE
}
61 for (i
= 0; i
< sizeof (tests
) / sizeof (tests
[0]); ++i
)
63 printf ("Testing: %s\n", tests
[i
].network
);
64 res
= inet_network (tests
[i
].network
);
66 if (res
!= tests
[i
].number
)
69 printf ("Test failed for inet_network (\"%s\"):\n",
71 printf ("Expected return value %u (0x%x) but got %u (0x%x).\n",
72 tests
[i
].number
, tests
[i
].number
, res
, res
);
80 #define TEST_FUNCTION do_test ()
81 #include "../test-skeleton.c"