Lines Matching refs:strtol
54 atf_tc_fail_nonfatal("strtol(%s, &end, %d) failed "
68 "strtol(%p, &end, %d)", end, t->str, t->base);
74 atf_tc_set_md_var(tc, "descr", "Test strtol(3) with different bases");
117 li = strtol(t[i].str, &end, t[i].base);
145 atf_tc_set_md_var(tc, "descr", "Test strtol(3) with an invalid base");
173 CHECK(li, "%ld", strtol);
184 atf_tc_set_md_var(tc, "descr", "Case insensitivity with strtol(3)");
209 li = strtol(t[i].str, &end, t[i].base);
220 atf_tc_set_md_var(tc, "descr", "Test ERANGE from strtol(3)");
248 li = strtol(t[i].str, &end, t[i].base);
251 atf_tc_fail("strtol(3) did not catch ERANGE");
260 atf_tc_set_md_var(tc, "descr", "A basic test of strtol(3)");
290 li = strtol(t[i].str, &end, t[i].base);