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