uboot/test/cmd_ut.c
<<
>>
Prefs
   1// SPDX-License-Identifier: GPL-2.0
   2/*
   3 * (C) Copyright 2015
   4 * Joe Hershberger, National Instruments, joe.hershberger@ni.com
   5 */
   6
   7#include <common.h>
   8#include <command.h>
   9#include <console.h>
  10#include <test/suites.h>
  11#include <test/test.h>
  12#include <test/ut.h>
  13
  14static int do_ut_all(struct cmd_tbl *cmdtp, int flag, int argc,
  15                     char *const argv[]);
  16
  17int cmd_ut_category(const char *name, const char *prefix,
  18                    struct unit_test *tests, int n_ents,
  19                    int argc, char *const argv[])
  20{
  21        int ret;
  22
  23        ret = ut_run_list(name, prefix, tests, n_ents,
  24                          argc > 1 ? argv[1] : NULL);
  25
  26        return ret ? CMD_RET_FAILURE : 0;
  27}
  28
  29static struct cmd_tbl cmd_ut_sub[] = {
  30        U_BOOT_CMD_MKENT(all, CONFIG_SYS_MAXARGS, 1, do_ut_all, "", ""),
  31        U_BOOT_CMD_MKENT(common, CONFIG_SYS_MAXARGS, 1, do_ut_common, "", ""),
  32#if defined(CONFIG_UT_DM)
  33        U_BOOT_CMD_MKENT(dm, CONFIG_SYS_MAXARGS, 1, do_ut_dm, "", ""),
  34#endif
  35#if defined(CONFIG_UT_ENV)
  36        U_BOOT_CMD_MKENT(env, CONFIG_SYS_MAXARGS, 1, do_ut_env, "", ""),
  37#endif
  38#ifdef CONFIG_UT_OPTEE
  39        U_BOOT_CMD_MKENT(optee, CONFIG_SYS_MAXARGS, 1, do_ut_optee, "", ""),
  40#endif
  41#ifdef CONFIG_UT_OVERLAY
  42        U_BOOT_CMD_MKENT(overlay, CONFIG_SYS_MAXARGS, 1, do_ut_overlay, "", ""),
  43#endif
  44#ifdef CONFIG_UT_LIB
  45        U_BOOT_CMD_MKENT(lib, CONFIG_SYS_MAXARGS, 1, do_ut_lib, "", ""),
  46#endif
  47#ifdef CONFIG_UT_LOG
  48        U_BOOT_CMD_MKENT(log, CONFIG_SYS_MAXARGS, 1, do_ut_log, "", ""),
  49#endif
  50        U_BOOT_CMD_MKENT(mem, CONFIG_SYS_MAXARGS, 1, do_ut_mem, "", ""),
  51#ifdef CONFIG_CMD_SETEXPR
  52        U_BOOT_CMD_MKENT(setexpr, CONFIG_SYS_MAXARGS, 1, do_ut_setexpr, "",
  53                         ""),
  54#endif
  55        U_BOOT_CMD_MKENT(print, CONFIG_SYS_MAXARGS, 1, do_ut_print, "", ""),
  56#ifdef CONFIG_UT_TIME
  57        U_BOOT_CMD_MKENT(time, CONFIG_SYS_MAXARGS, 1, do_ut_time, "", ""),
  58#endif
  59#if CONFIG_IS_ENABLED(UT_UNICODE) && !defined(API_BUILD)
  60        U_BOOT_CMD_MKENT(unicode, CONFIG_SYS_MAXARGS, 1, do_ut_unicode, "", ""),
  61#endif
  62#ifdef CONFIG_SANDBOX
  63        U_BOOT_CMD_MKENT(compression, CONFIG_SYS_MAXARGS, 1, do_ut_compression,
  64                         "", ""),
  65        U_BOOT_CMD_MKENT(bloblist, CONFIG_SYS_MAXARGS, 1, do_ut_bloblist,
  66                         "", ""),
  67        U_BOOT_CMD_MKENT(bootm, CONFIG_SYS_MAXARGS, 1, do_ut_bootm, "", ""),
  68#endif
  69        U_BOOT_CMD_MKENT(str, CONFIG_SYS_MAXARGS, 1, do_ut_str, "", ""),
  70#ifdef CONFIG_CMD_ADDRMAP
  71        U_BOOT_CMD_MKENT(addrmap, CONFIG_SYS_MAXARGS, 1, do_ut_addrmap, "", ""),
  72#endif
  73};
  74
  75static int do_ut_all(struct cmd_tbl *cmdtp, int flag, int argc,
  76                     char *const argv[])
  77{
  78        int i;
  79        int retval;
  80        int any_fail = 0;
  81
  82        for (i = 1; i < ARRAY_SIZE(cmd_ut_sub); i++) {
  83                printf("----Running %s tests----\n", cmd_ut_sub[i].name);
  84                retval = cmd_ut_sub[i].cmd(cmdtp, flag, 1, &cmd_ut_sub[i].name);
  85                if (!any_fail)
  86                        any_fail = retval;
  87        }
  88
  89        return any_fail;
  90}
  91
  92static int do_ut(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
  93{
  94        struct cmd_tbl *cp;
  95
  96        if (argc < 2)
  97                return CMD_RET_USAGE;
  98
  99        /* drop initial "ut" arg */
 100        argc--;
 101        argv++;
 102
 103        cp = find_cmd_tbl(argv[0], cmd_ut_sub, ARRAY_SIZE(cmd_ut_sub));
 104
 105        if (cp)
 106                return cp->cmd(cmdtp, flag, argc, argv);
 107
 108        return CMD_RET_USAGE;
 109}
 110
 111#ifdef CONFIG_SYS_LONGHELP
 112static char ut_help_text[] =
 113        "all - execute all enabled tests\n"
 114#ifdef CONFIG_SANDBOX
 115        "ut bloblist - Test bloblist implementation\n"
 116        "ut compression - Test compressors and bootm decompression\n"
 117#endif
 118#ifdef CONFIG_UT_DM
 119        "ut dm [test-name]\n"
 120#endif
 121#ifdef CONFIG_UT_ENV
 122        "ut env [test-name]\n"
 123#endif
 124#ifdef CONFIG_UT_LIB
 125        "ut lib [test-name] - test library functions\n"
 126#endif
 127#ifdef CONFIG_UT_LOG
 128        "ut log [test-name] - test logging functions\n"
 129#endif
 130        "ut mem [test-name] - test memory-related commands\n"
 131#ifdef CONFIG_UT_OPTEE
 132        "ut optee [test-name]\n"
 133#endif
 134#ifdef CONFIG_UT_OVERLAY
 135        "ut overlay [test-name]\n"
 136#endif
 137        "ut print [test-name]  - test printing\n"
 138        "ut setexpr [test-name] - test setexpr command\n"
 139#ifdef CONFIG_SANDBOX
 140        "ut str - Basic test of string functions\n"
 141#endif
 142#ifdef CONFIG_UT_TIME
 143        "ut time - Very basic test of time functions\n"
 144#endif
 145#if defined(CONFIG_UT_UNICODE) && \
 146        !defined(CONFIG_SPL_BUILD) && !defined(API_BUILD)
 147        "ut unicode [test-name] - test Unicode functions\n"
 148#endif
 149#ifdef CONFIG_CMD_ADDRMAP
 150        "ut addrmap - Very basic test of addrmap command\n"
 151#endif
 152        ;
 153#endif /* CONFIG_SYS_LONGHELP */
 154
 155U_BOOT_CMD(
 156        ut, CONFIG_SYS_MAXARGS, 1, do_ut,
 157        "unit tests", ut_help_text
 158);
 159