Searched refs:border5 (Results 1 – 1 of 1) sorted by relevance
/Zephyr-latest/tests/lib/c_lib/common/src/ |
D | main.c | 909 char border5[] = "0x0000000000000000000000000000000000001"; in test_strtoll() local 921 ret = strtoull(border5, NULL, 16); in test_strtoll() 922 zassert_equal(ret, 1, "strtoull base = 16 failed, %s != 0x%x", border5, ret); in test_strtoll() 990 char border5[] = "10000000000000000000000000000000000001"; in test_strtoull() local 1001 ret = strtoull(border5, NULL, 10); in test_strtoull() 1002 zassert_equal(errno, ERANGE, "strtoull base = 10 failed, %s != %lld", border5, ret); in test_strtoull()
|