Home
last modified time | relevance | path

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

/Zephyr-latest/tests/unit/util/
Dmain.c866 char dest_str[strlen("€") * 2 + 1 + 1]; in ZTEST() local
870 utf8_lcpy(dest_str, test_str, sizeof((dest_str))); in ZTEST()
872 zassert_str_equal(dest_str, expected_result, "Failed to copy"); in ZTEST()
878 char dest_str[strlen("€") * 3 + 1]; in ZTEST() local
882 utf8_lcpy(dest_str, test_str, sizeof((dest_str))); in ZTEST()
884 zassert_str_equal(dest_str, expected_result, "Failed to truncate"); in ZTEST()
890 char dest_str[1]; in ZTEST() local
894 utf8_lcpy(dest_str, test_str, sizeof((dest_str))); in ZTEST()
896 zassert_str_equal(dest_str, expected_result, "Failed to truncate"); in ZTEST()
901 char dest_str[] = "A"; in ZTEST() local
[all …]