From 5bd9ef401c923ff477a75f1729550396d8bf5265 Mon Sep 17 00:00:00 2001 From: DoHyun Pyun Date: Tue, 6 Apr 2021 09:05:29 +0900 Subject: [PATCH] Add the coverage exception for internal function Change-Id: I33a628f5f9ae5474e4f885aea3dfb867bb721c3b Signed-off-by: DoHyun Pyun --- src/bluetooth-mesh.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bluetooth-mesh.c b/src/bluetooth-mesh.c index f86bb2e..d99f759 100644 --- a/src/bluetooth-mesh.c +++ b/src/bluetooth-mesh.c @@ -1467,6 +1467,7 @@ int bt_mesh_network_load(const char *token, bt_mesh_network_h *network) return error_code; } +/* LCOV_EXCL_START */ int bt_mesh_node_network_join(bt_mesh_node_h node_handle, bt_mesh_join_complete_cb callback, void *user_data) @@ -1643,6 +1644,7 @@ int bt_mesh_node_model_set_msg_cb(bt_mesh_node_h node_handle, FUNC_EXIT; return BT_ERROR_NONE; } +/* LCOV_EXCL_STOP */ int bt_mesh_network_get_name(bt_mesh_network_h network, char **network_name) { -- 2.34.1