1 /* 2 * Copyright (c) 2017 Intel Corporation 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #if defined(CONFIG_BT_MESH_SELF_TEST) 8 int bt_mesh_test(void); 9 #else bt_mesh_test(void)10 static inline int bt_mesh_test(void) 11 { 12 return 0; 13 } 14 #endif 15