aboutsummaryrefslogtreecommitdiff
path: root/include/test
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-04-08 08:32:55 -0600
committerTom Rini <trini@konsulko.com>2020-04-24 16:40:09 -0400
commit4f04d54981cd9d641e4ca958c551aeb00ee55484 (patch)
tree80fc0710b6b0ec9f3b58255398c9782743805cb2 /include/test
parent4b4858936fadd61a1696cb5408ab81330ddb5c14 (diff)
downloadu-boot-4f04d54981cd9d641e4ca958c551aeb00ee55484.zip
u-boot-4f04d54981cd9d641e4ca958c551aeb00ee55484.tar.gz
u-boot-4f04d54981cd9d641e4ca958c551aeb00ee55484.tar.bz2
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/test')
-rw-r--r--include/test/suites.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/test/suites.h b/include/test/suites.h
index 39ad81a..213e3ce 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[]);