mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-06 20:10:17 +01:00
118 lines
3.9 KiB
C
118 lines
3.9 KiB
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
|
|
#define NM_TEST_UTILS_NO_LIBNM 1
|
|
|
|
#include "nm-default.h"
|
|
|
|
#include "nm-log-core/nm-logging.h"
|
|
#include "nm-platform/nm-netlink.h"
|
|
#include "nm-platform/nmp-netns.h"
|
|
|
|
#include "nm-utils/nm-test-utils.h"
|
|
|
|
/*****************************************************************************/
|
|
|
|
void
|
|
_nm_logging_clear_platform_logging_cache(void)
|
|
{
|
|
/* this symbols is required by nm-log-core library. */
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
|
|
static void
|
|
test_use_symbols(void)
|
|
{
|
|
static void (*const SYMBOLS[])(void) = {
|
|
(void (*)(void)) nl_nlmsghdr_to_str,
|
|
(void (*)(void)) nlmsg_hdr,
|
|
(void (*)(void)) nlmsg_reserve,
|
|
(void (*)(void)) nla_reserve,
|
|
(void (*)(void)) nlmsg_alloc_size,
|
|
(void (*)(void)) nlmsg_alloc,
|
|
(void (*)(void)) nlmsg_alloc_convert,
|
|
(void (*)(void)) nlmsg_alloc_simple,
|
|
(void (*)(void)) nlmsg_free,
|
|
(void (*)(void)) nlmsg_append,
|
|
(void (*)(void)) nlmsg_parse,
|
|
(void (*)(void)) nlmsg_put,
|
|
(void (*)(void)) nla_strlcpy,
|
|
(void (*)(void)) nla_memcpy,
|
|
(void (*)(void)) nla_put,
|
|
(void (*)(void)) nla_find,
|
|
(void (*)(void)) nla_nest_cancel,
|
|
(void (*)(void)) nla_nest_start,
|
|
(void (*)(void)) nla_nest_end,
|
|
(void (*)(void)) nla_parse,
|
|
(void (*)(void)) nlmsg_get_proto,
|
|
(void (*)(void)) nlmsg_set_proto,
|
|
(void (*)(void)) nlmsg_set_src,
|
|
(void (*)(void)) nlmsg_get_creds,
|
|
(void (*)(void)) nlmsg_set_creds,
|
|
(void (*)(void)) genlmsg_put,
|
|
(void (*)(void)) genlmsg_data,
|
|
(void (*)(void)) genlmsg_user_hdr,
|
|
(void (*)(void)) genlmsg_hdr,
|
|
(void (*)(void)) genlmsg_user_data,
|
|
(void (*)(void)) genlmsg_attrdata,
|
|
(void (*)(void)) genlmsg_len,
|
|
(void (*)(void)) genlmsg_attrlen,
|
|
(void (*)(void)) genlmsg_valid_hdr,
|
|
(void (*)(void)) genlmsg_parse,
|
|
(void (*)(void)) genl_ctrl_resolve,
|
|
(void (*)(void)) nl_socket_alloc,
|
|
(void (*)(void)) nl_socket_free,
|
|
(void (*)(void)) nl_socket_get_fd,
|
|
(void (*)(void)) nl_socket_get_local_port,
|
|
(void (*)(void)) nl_socket_get_msg_buf_size,
|
|
(void (*)(void)) nl_socket_set_passcred,
|
|
(void (*)(void)) nl_socket_set_msg_buf_size,
|
|
(void (*)(void)) nlmsg_get_dst,
|
|
(void (*)(void)) nl_socket_set_nonblocking,
|
|
(void (*)(void)) nl_socket_set_buffer_size,
|
|
(void (*)(void)) nl_socket_add_memberships,
|
|
(void (*)(void)) nl_socket_set_ext_ack,
|
|
(void (*)(void)) nl_socket_disable_msg_peek,
|
|
(void (*)(void)) nl_connect,
|
|
(void (*)(void)) nl_wait_for_ack,
|
|
(void (*)(void)) nl_recvmsgs,
|
|
(void (*)(void)) nl_sendmsg,
|
|
(void (*)(void)) nl_send_iovec,
|
|
(void (*)(void)) nl_complete_msg,
|
|
(void (*)(void)) nl_send,
|
|
(void (*)(void)) nl_send_auto,
|
|
(void (*)(void)) nl_recv,
|
|
|
|
(void (*)(void)) nmp_netns_bind_to_path,
|
|
(void (*)(void)) nmp_netns_bind_to_path_destroy,
|
|
(void (*)(void)) nmp_netns_get_current,
|
|
(void (*)(void)) nmp_netns_get_fd_mnt,
|
|
(void (*)(void)) nmp_netns_get_fd_net,
|
|
(void (*)(void)) nmp_netns_get_initial,
|
|
(void (*)(void)) nmp_netns_is_initial,
|
|
(void (*)(void)) nmp_netns_new,
|
|
(void (*)(void)) nmp_netns_pop,
|
|
(void (*)(void)) nmp_netns_push,
|
|
(void (*)(void)) nmp_netns_push_type,
|
|
|
|
NULL,
|
|
};
|
|
|
|
/* The only (not very exciting) purpose of this test is to see that
|
|
* we can use various symbols and don't get a linker error. */
|
|
assert(G_N_ELEMENTS(SYMBOLS) == NM_PTRARRAY_LEN(SYMBOLS) + 1);
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
|
|
NMTST_DEFINE();
|
|
|
|
int
|
|
main(int argc, char **argv)
|
|
{
|
|
nmtst_init(&argc, &argv, TRUE);
|
|
|
|
g_test_add_func("/nm-platform/test_use_symbols", test_use_symbols);
|
|
|
|
return g_test_run();
|
|
}
|