]> git.ipfire.org Git - thirdparty/u-boot.git/blame - test/cmd_ut.c
dm: sound: samsung: Make local function static
[thirdparty/u-boot.git] / test / cmd_ut.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0
c617ede0
JH
2/*
3 * (C) Copyright 2015
4 * Joe Hershberger, National Instruments, joe.hershberger@ni.com
c617ede0
JH
5 */
6
7#include <common.h>
8#include <command.h>
9#include <test/suites.h>
4d869c1e 10#include <test/test.h>
c617ede0
JH
11
12static int do_ut_all(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
13
4d869c1e
SG
14int cmd_ut_category(const char *name, struct unit_test *tests, int n_ents,
15 int argc, char * const argv[])
16{
17 struct unit_test_state uts = { .fail_count = 0 };
18 struct unit_test *test;
19
20 if (argc == 1)
21 printf("Running %d %s tests\n", n_ents, name);
22
23 for (test = tests; test < tests + n_ents; test++) {
24 if (argc > 1 && strcmp(argv[1], test->name))
25 continue;
26 printf("Test: %s\n", test->name);
27
28 uts.start = mallinfo();
29
30 test->func(&uts);
31 }
32
33 printf("Failures: %d\n", uts.fail_count);
34
35 return uts.fail_count ? CMD_RET_FAILURE : 0;
36}
37
c617ede0
JH
38static cmd_tbl_t cmd_ut_sub[] = {
39 U_BOOT_CMD_MKENT(all, CONFIG_SYS_MAXARGS, 1, do_ut_all, "", ""),
40441e0b
JH
40#if defined(CONFIG_UT_DM)
41 U_BOOT_CMD_MKENT(dm, CONFIG_SYS_MAXARGS, 1, do_ut_dm, "", ""),
42#endif
421f86f3
JH
43#if defined(CONFIG_UT_ENV)
44 U_BOOT_CMD_MKENT(env, CONFIG_SYS_MAXARGS, 1, do_ut_env, "", ""),
45#endif
f2a9942f
MR
46#ifdef CONFIG_UT_OVERLAY
47 U_BOOT_CMD_MKENT(overlay, CONFIG_SYS_MAXARGS, 1, do_ut_overlay, "", ""),
48#endif
c812f722
JH
49#ifdef CONFIG_UT_TIME
50 U_BOOT_CMD_MKENT(time, CONFIG_SYS_MAXARGS, 1, do_ut_time, "", ""),
51#endif
f11a164b
HS
52#if CONFIG_IS_ENABLED(UT_UNICODE) && !defined(API_BUILD)
53 U_BOOT_CMD_MKENT(unicode, CONFIG_SYS_MAXARGS, 1, do_ut_unicode, "", ""),
54#endif
0aac10f2
SG
55#ifdef CONFIG_SANDBOX
56 U_BOOT_CMD_MKENT(compression, CONFIG_SYS_MAXARGS, 1, do_ut_compression,
57 "", ""),
919e7a8f
SG
58 U_BOOT_CMD_MKENT(bloblist, CONFIG_SYS_MAXARGS, 1, do_ut_bloblist,
59 "", ""),
0aac10f2 60#endif
c617ede0
JH
61};
62
63static int do_ut_all(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
64{
65 int i;
66 int retval;
67 int any_fail = 0;
68
69 for (i = 1; i < ARRAY_SIZE(cmd_ut_sub); i++) {
70 printf("----Running %s tests----\n", cmd_ut_sub[i].name);
71 retval = cmd_ut_sub[i].cmd(cmdtp, flag, 1, &cmd_ut_sub[i].name);
72 if (!any_fail)
73 any_fail = retval;
74 }
75
76 return any_fail;
77}
78
79static int do_ut(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
80{
81 cmd_tbl_t *cp;
82
83 if (argc < 2)
84 return CMD_RET_USAGE;
85
86 /* drop initial "ut" arg */
87 argc--;
88 argv++;
89
90 cp = find_cmd_tbl(argv[0], cmd_ut_sub, ARRAY_SIZE(cmd_ut_sub));
91
92 if (cp)
93 return cp->cmd(cmdtp, flag, argc, argv);
94
95 return CMD_RET_USAGE;
96}
97
98#ifdef CONFIG_SYS_LONGHELP
99static char ut_help_text[] =
100 "all - execute all enabled tests\n"
f11a164b 101#ifdef CONFIG_SANDBOX
919e7a8f 102 "ut bloblist - Test bloblist implementation\n"
f11a164b
HS
103 "ut compression - Test compressors and bootm decompression\n"
104#endif
40441e0b
JH
105#ifdef CONFIG_UT_DM
106 "ut dm [test-name]\n"
c812f722 107#endif
421f86f3
JH
108#ifdef CONFIG_UT_ENV
109 "ut env [test-name]\n"
110#endif
f2a9942f
MR
111#ifdef CONFIG_UT_OVERLAY
112 "ut overlay [test-name]\n"
113#endif
c812f722
JH
114#ifdef CONFIG_UT_TIME
115 "ut time - Very basic test of time functions\n"
0aac10f2 116#endif
f11a164b
HS
117#if defined(CONFIG_UT_UNICODE) && \
118 !defined(CONFIG_SPL_BUILD) && !defined(API_BUILD)
119 "ut unicode [test-name] - test Unicode functions\n"
40441e0b 120#endif
c617ede0 121 ;
f11a164b 122#endif /* CONFIG_SYS_LONGHELP */
c617ede0
JH
123
124U_BOOT_CMD(
125 ut, CONFIG_SYS_MAXARGS, 1, do_ut,
126 "unit tests", ut_help_text
127);