Searched refs:next2 (Results 1 – 1 of 1) sorted by relevance
/Zephyr-Core-2.7.6/tests/subsys/settings/functional/src/ |
D | settings_basic_test.c | 76 const char *next1, *next2; in test_support_rtn() local 83 rc = settings_name_steq(test2, "bt/a/b/c/d", &next2); in test_support_rtn() 85 zassert_is_null(next2, "_steq comparison next error"); in test_support_rtn() 92 rc = settings_name_steq(test2, "bt/a/b/c", &next2); in test_support_rtn() 94 zassert_not_null(next2, "_steq comparison next error"); in test_support_rtn() 95 zassert_equal_ptr(next2, test2+9, "next points to wrong location"); in test_support_rtn() 101 rc = settings_name_steq(test2, "bta", &next2); in test_support_rtn() 103 zassert_is_null(next2, "_steq comparison next error"); in test_support_rtn() 109 rc = settings_name_steq(test2, "b", &next2); in test_support_rtn() 111 zassert_is_null(next2, "_steq comparison next error"); in test_support_rtn() [all …]
|