1 /* SPDX-License-Identifier: GPL-2.0 */
7 #ifndef __TEST_SUITES_H__
8 #define __TEST_SUITES_H__
14 * cmd_ut_category() - Run a category of unit tests
16 * @name: Category name
17 * @prefix: Prefix of test name
18 * @tests: List of tests to run
19 * @n_ents: Number of tests in @tests
20 * @argc: Argument count provided. Must be >= 1. If this is 1 then all
21 * tests are run, otherwise only the one named @argv[1] is run.
22 * @argv: Arguments: argv[1] is the test to run (if @argc >= 2)
23 * @return 0 if OK, CMD_RET_FAILURE on failure
25 int cmd_ut_category(const char *name, const char *prefix,
26 struct unit_test *tests, int n_ents,
27 int argc, char *const argv[]);
29 int do_ut_bloblist(struct cmd_tbl *cmdtp, int flag, int argc,
31 int do_ut_compression(struct cmd_tbl *cmdtp, int flag, int argc,
33 int do_ut_dm(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
34 int do_ut_env(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
35 int do_ut_lib(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
36 int do_ut_log(struct cmd_tbl *cmdtp, int flag, int argc, char * const argv[]);
37 int do_ut_optee(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
38 int do_ut_overlay(struct cmd_tbl *cmdtp, int flag, int argc,
40 int do_ut_str(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
41 int do_ut_time(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
42 int do_ut_unicode(struct cmd_tbl *cmdtp, int flag, int argc,
45 #endif /* __TEST_SUITES_H__ */