diff options
author | Simon Glass | 2020-04-08 08:32:55 -0600 |
---|---|---|
committer | Tom Rini | 2020-04-24 16:40:09 -0400 |
commit | 4f04d54981cd9d641e4ca958c551aeb00ee55484 (patch) | |
tree | 80fc0710b6b0ec9f3b58255398c9782743805cb2 /include | |
parent | 4b4858936fadd61a1696cb5408ab81330ddb5c14 (diff) |
test: Add the beginnings of some string tests
There are quite a few string functions in U-Boot with no tests. Make a
start by adding a test for strtoul().
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/test/suites.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/test/suites.h b/include/test/suites.h index 39ad81a90f9..213e3cee77f 100644 --- a/include/test/suites.h +++ b/include/test/suites.h @@ -33,6 +33,7 @@ int do_ut_lib(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); int do_ut_log(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); int do_ut_optee(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); int do_ut_overlay(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); +int do_ut_str(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[]); int do_ut_time(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); int do_ut_unicode(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); |