]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/test/test-af-list.c
Merge pull request #16271 from yuwata/network-cleanups-around-link-get
[thirdparty/systemd.git] / src / test / test-af-list.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2
3 #include <sys/socket.h>
4
5 #include "macro.h"
6 #include "string-util.h"
7 #include "util.h"
8
9 _unused_
10 static const struct af_name* lookup_af(register const char *str, register GPERF_LEN_TYPE len);
11
12 #include "af-from-name.h"
13 #include "af-list.h"
14 #include "af-to-name.h"
15
16 int main(int argc, const char *argv[]) {
17
18 unsigned i;
19
20 for (i = 0; i < ELEMENTSOF(af_names); i++) {
21 if (af_names[i]) {
22 assert_se(streq(af_to_name(i), af_names[i]));
23 assert_se(af_from_name(af_names[i]) == (int) i);
24 }
25 }
26
27 assert_se(af_to_name(af_max()) == NULL);
28 assert_se(af_to_name(-1) == NULL);
29 assert_se(af_from_name("huddlduddl") == -EINVAL);
30 assert_se(af_from_name("") == -EINVAL);
31
32 return 0;
33 }