Home
last modified time | relevance | path

Searched refs:call_cnt_b (Results 1 – 3 of 3) sorted by relevance

/Zephyr-latest/tests/net/conn_mgr_conn/src/
Dmain.c73 iface_data->call_cnt_b = 0; in reset_test_iface_state()
225 zassert_equal(ifa1_data->call_cnt_b, 0, "Implementation A should be used for ifa1"); in ZTEST()
229 zassert_equal(ifa2_data->call_cnt_b, 0, "ifa2 should not be affected by ifa1"); in ZTEST()
233 zassert_equal(ifb_data->call_cnt_b, 0, "ifb should not be affected by ifa1"); in ZTEST()
247 zassert_equal(ifa1_data->call_cnt_b, 0, "ifa1 should not be affected by ifb"); in ZTEST()
251 zassert_equal(ifa2_data->call_cnt_b, 0, "ifa2 should not be affected by ifb"); in ZTEST()
255 zassert_equal(ifb_data->call_cnt_b, 1, "Implementation B should be used for ifb"); in ZTEST()
269 zassert_equal(ifa1_data->call_cnt_b, 0, "ifa1 should not be affected by ifa2"); in ZTEST()
273 zassert_equal(ifa2_data->call_cnt_b, 0, "Implementation A should be used for ifa2"); in ZTEST()
277 zassert_equal(ifb_data->call_cnt_b, 1, "ifb should not be affected by ifa2"); in ZTEST()
[all …]
Dtest_conn_impl.h33 int call_cnt_b; member
Dtest_conn_impl.c87 data->call_cnt_b += 1; in inc_call_count()