summaryrefslogtreecommitdiffstats
path: root/include/test
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-11-01 14:15:35 -0700
committerTom Rini <trini@konsulko.com>2020-12-01 10:33:38 -0500
commit90a9901764d71308192c96ecd7d735531fe9cc30 (patch)
treec62b3b89e98722bac86212ef4c2237840a709f0d /include/test
parent4532bf411e56ef32984e2e98cf1aab6755fd77e2 (diff)
downloadu-boot-90a9901764d71308192c96ecd7d735531fe9cc30.tar.gz
u-boot-90a9901764d71308192c96ecd7d735531fe9cc30.tar.xz
u-boot-90a9901764d71308192c96ecd7d735531fe9cc30.zip
test: Add some tests for setexpr
This command currently has no tests. Add some for basic assignment and the integer operations. Note that the default size for setexpr is ulong, which varies depending on the build machine. So for sandbox on a 64-bit host, this means that the default size is 64 bits. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/test')
-rw-r--r--include/test/suites.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/test/suites.h b/include/test/suites.h
index ab7b3bd9ca..5c97846e7f 100644
--- a/include/test/suites.h
+++ b/include/test/suites.h
@@ -38,6 +38,8 @@ int do_ut_mem(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
int do_ut_optee(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
int do_ut_overlay(struct cmd_tbl *cmdtp, int flag, int argc,
char *const argv[]);
+int do_ut_setexpr(struct cmd_tbl *cmdtp, int flag, int argc,
+ char *const argv[]);
int do_ut_str(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
int do_ut_time(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
int do_ut_unicode(struct cmd_tbl *cmdtp, int flag, int argc,