Lines Matching refs:uts
22 static int str_upper(struct unit_test_state *uts) in str_upper() argument
60 static int run_strtoul(struct unit_test_state *uts, const char *str, int base, in run_strtoul() argument
78 static int str_simple_strtoul(struct unit_test_state *uts) in str_simple_strtoul() argument
85 ut_assertok(run_strtoul(uts, str2, 10, 1099, 4, upper)); in str_simple_strtoul()
86 ut_assertok(run_strtoul(uts, str2, 16, 0x1099ab, 6, upper)); in str_simple_strtoul()
89 ut_assertok(run_strtoul(uts, str1, 10, 0, 0, upper)); in str_simple_strtoul()
92 ut_assertok(run_strtoul(uts, str1, 0, 0, 0, upper)); in str_simple_strtoul()
93 ut_assertok(run_strtoul(uts, str2, 0, 1099, 4, upper)); in str_simple_strtoul()
94 ut_assertok(run_strtoul(uts, str3, 0, 0xb, 3, upper)); in str_simple_strtoul()
97 ut_assertok(run_strtoul(uts, str1, 2, 0, 0, upper)); in str_simple_strtoul()
98 ut_assertok(run_strtoul(uts, str2, 2, 2, 2, upper)); in str_simple_strtoul()