Line data Source code
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 1 : int main(int argc, char **argv) { 17 1 : test_table(bond_ad_select, NETDEV_BOND_AD_SELECT); 18 1 : test_table(bond_arp_all_targets, NETDEV_BOND_ARP_ALL_TARGETS); 19 1 : test_table(bond_arp_validate, NETDEV_BOND_ARP_VALIDATE); 20 1 : test_table(bond_fail_over_mac, NETDEV_BOND_FAIL_OVER_MAC); 21 1 : test_table(bond_lacp_rate, NETDEV_BOND_LACP_RATE); 22 1 : test_table(bond_mode, NETDEV_BOND_MODE); 23 1 : test_table(bond_primary_reselect, NETDEV_BOND_PRIMARY_RESELECT); 24 1 : test_table(bond_xmit_hash_policy, NETDEV_BOND_XMIT_HASH_POLICY); 25 1 : test_table(dhcp6_message_status, DHCP6_STATUS); 26 1 : test_table_sparse(dhcp6_message_type, DHCP6_MESSAGE); /* enum starts from 1 */ 27 1 : test_table(dhcp_use_domains, DHCP_USE_DOMAINS); 28 1 : test_table(duplex, DUP); 29 1 : test_table(ip6tnl_mode, NETDEV_IP6_TNL_MODE); 30 1 : test_table(ipv6_privacy_extensions, IPV6_PRIVACY_EXTENSIONS); 31 1 : test_table(ipvlan_flags, NETDEV_IPVLAN_FLAGS); 32 1 : test_table(link_operstate, LINK_OPERSTATE); 33 : /* test_table(link_state, LINK_STATE); — not a reversible mapping */ 34 1 : test_table(lldp_mode, LLDP_MODE); 35 1 : test_table(netdev_kind, NETDEV_KIND); 36 1 : test_table(nl_union_link_info_data, NL_UNION_LINK_INFO_DATA); 37 1 : test_table(radv_prefix_delegation, RADV_PREFIX_DELEGATION); 38 1 : test_table(wol, WOL); 39 1 : test_table(lldp_event, SD_LLDP_EVENT); 40 1 : test_table(ndisc_event, SD_NDISC_EVENT); 41 : 42 1 : test_table_sparse(ipvlan_mode, NETDEV_IPVLAN_MODE); 43 1 : test_table_sparse(macvlan_mode, NETDEV_MACVLAN_MODE); 44 1 : test_table_sparse(address_family, ADDRESS_FAMILY); 45 : 46 1 : return EXIT_SUCCESS; 47 : }