Home
last modified time | relevance | path

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

/Zephyr-Core-3.5.0/tests/crypto/mbedtls/src/
Dmbedtls.c74 static int test_snprintf(size_t n, const char *ref_buf, int ref_ret) in test_snprintf() function
95 return (test_snprintf(0, "xxxxxxxxx", -1) != 0 || in run_test_snprintf()
96 test_snprintf(1, "", -1) != 0 || in run_test_snprintf()
97 test_snprintf(2, "1", -1) != 0 || in run_test_snprintf()
98 test_snprintf(3, "12", -1) != 0 || in run_test_snprintf()
99 test_snprintf(4, "123", 3) != 0 || in run_test_snprintf()
100 test_snprintf(5, "123", 3) != 0); in run_test_snprintf()
/Zephyr-Core-3.5.0/tests/lib/sprintf/src/
Dmain.c500 ZTEST(sprintf, test_snprintf) in ZTEST() argument