]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/network/test-network-tables.c
license: LGPL-2.1+ -> LGPL-2.1-or-later
[thirdparty/systemd.git] / src / network / test-network-tables.c
CommitLineData
db9ecf05 1/* SPDX-License-Identifier: LGPL-2.1-or-later */
4368277c 2
737f1405 3#include "bond.h"
86bbe5bf
ZJS
4#include "dhcp6-internal.h"
5#include "dhcp6-protocol.h"
86bbe5bf 6#include "ethtool-util.h"
737f1405 7#include "ipvlan.h"
90208b82 8#include "lldp-internal.h"
737f1405 9#include "macvlan.h"
90208b82 10#include "ndisc-internal.h"
279eadd9 11#include "netlink-internal.h"
23f53b99 12#include "networkd-link.h"
018eaf74 13#include "networkd-network.h"
23f53b99 14#include "networkd-util.h"
86bbe5bf 15#include "test-tables.h"
737f1405 16#include "tunnel.h"
86bbe5bf
ZJS
17
18int main(int argc, char **argv) {
018eaf74
ZJS
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);
279eadd9 24 test_table(bond_mode, NETDEV_BOND_MODE);
018eaf74
ZJS
25 test_table(bond_primary_reselect, NETDEV_BOND_PRIMARY_RESELECT);
26 test_table(bond_xmit_hash_policy, NETDEV_BOND_XMIT_HASH_POLICY);
86bbe5bf 27 test_table(dhcp6_message_status, DHCP6_STATUS);
98310c71 28 test_table_sparse(dhcp6_message_type, DHCP6_MESSAGE); /* enum starts from 1 */
018eaf74 29 test_table(dhcp_use_domains, DHCP_USE_DOMAINS);
86bbe5bf 30 test_table(duplex, DUP);
018eaf74
ZJS
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);
279eadd9
ZJS
34 test_table(link_operstate, LINK_OPERSTATE);
35 /* test_table(link_state, LINK_STATE); — not a reversible mapping */
018eaf74 36 test_table(lldp_mode, LLDP_MODE);
279eadd9 37 test_table(netdev_kind, NETDEV_KIND);
86bbe5bf 38 test_table(nl_union_link_info_data, NL_UNION_LINK_INFO_DATA);
5f74e49e 39 test_table(radv_prefix_delegation, RADV_PREFIX_DELEGATION);
279eadd9 40 test_table(wol, WOL);
90208b82
YW
41 test_table(lldp_event, SD_LLDP_EVENT);
42 test_table(ndisc_event, SD_NDISC_EVENT);
86bbe5bf 43
279eadd9
ZJS
44 test_table_sparse(ipvlan_mode, NETDEV_IPVLAN_MODE);
45 test_table_sparse(macvlan_mode, NETDEV_MACVLAN_MODE);
2d792895 46 test_table_sparse(address_family, ADDRESS_FAMILY);
86bbe5bf
ZJS
47
48 return EXIT_SUCCESS;
49}