]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/network/test-network-tables.c
core: reduce scope of variants
[thirdparty/systemd.git] / src / network / test-network-tables.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2
3 #include "bond.h"
4 #include "dhcp6-internal.h"
5 #include "dhcp6-protocol.h"
6 #include "ethtool-util.h"
7 #include "ipvlan.h"
8 #include "lldp-internal.h"
9 #include "macvlan.h"
10 #include "ndisc-internal.h"
11 #include "netlink-internal.h"
12 #include "networkd-link.h"
13 #include "networkd-network.h"
14 #include "networkd-util.h"
15 #include "test-tables.h"
16 #include "tunnel.h"
17
18 int main(int argc, char **argv) {
19 test_table(bond_ad_select, NETDEV_BOND_AD_SELECT);
20 test_table(bond_arp_all_targets, NETDEV_BOND_ARP_ALL_TARGETS);
21 test_table(bond_arp_validate, NETDEV_BOND_ARP_VALIDATE);
22 test_table(bond_fail_over_mac, NETDEV_BOND_FAIL_OVER_MAC);
23 test_table(bond_lacp_rate, NETDEV_BOND_LACP_RATE);
24 test_table(bond_mode, NETDEV_BOND_MODE);
25 test_table(bond_primary_reselect, NETDEV_BOND_PRIMARY_RESELECT);
26 test_table(bond_xmit_hash_policy, NETDEV_BOND_XMIT_HASH_POLICY);
27 test_table(dhcp6_message_status, DHCP6_STATUS);
28 test_table_sparse(dhcp6_message_type, DHCP6_MESSAGE); /* enum starts from 1 */
29 test_table(dhcp_use_domains, DHCP_USE_DOMAINS);
30 test_table(duplex, DUP);
31 test_table(ip6tnl_mode, NETDEV_IP6_TNL_MODE);
32 test_table(ipv6_privacy_extensions, IPV6_PRIVACY_EXTENSIONS);
33 test_table(ipvlan_flags, NETDEV_IPVLAN_FLAGS);
34 test_table(link_operstate, LINK_OPERSTATE);
35 /* test_table(link_state, LINK_STATE); — not a reversible mapping */
36 test_table(lldp_mode, LLDP_MODE);
37 test_table(netdev_kind, NETDEV_KIND);
38 test_table(nl_union_link_info_data, NL_UNION_LINK_INFO_DATA);
39 test_table(radv_prefix_delegation, RADV_PREFIX_DELEGATION);
40 test_table(wol, WOL);
41 test_table(lldp_event, SD_LLDP_EVENT);
42 test_table(ndisc_event, SD_NDISC_EVENT);
43
44 test_table_sparse(ipvlan_mode, NETDEV_IPVLAN_MODE);
45 test_table_sparse(macvlan_mode, NETDEV_MACVLAN_MODE);
46 test_table_sparse(address_family, ADDRESS_FAMILY);
47
48 return EXIT_SUCCESS;
49 }