blob: 5c97846e7f5ef69ad2936f7e30718594e764c788 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0 */
Joe Hershbergerc617ede2015-05-20 14:27:28 -05002/*
3 * (C) Copyright 2015
4 * Joe Hershberger, National Instruments, joe.hershberger@ni.com
Joe Hershbergerc617ede2015-05-20 14:27:28 -05005 */
6
7#ifndef __TEST_SUITES_H__
8#define __TEST_SUITES_H__
9
Simon Glass09140112020-05-10 11:40:03 -060010struct cmd_tbl;
Simon Glass4d869c12017-11-25 11:57:29 -070011struct unit_test;
12
13/**
14 * cmd_ut_category() - Run a category of unit tests
15 *
16 * @name: Category name
Philippe Reynes4ad4edf2019-12-17 19:07:04 +010017 * @prefix: Prefix of test name
Simon Glass4d869c12017-11-25 11:57:29 -070018 * @tests: List of tests to run
19 * @n_ents: Number of tests in @tests
Heinrich Schuchardt4b0a2d32018-08-27 22:04:10 +020020 * @argc: Argument count provided. Must be >= 1. If this is 1 then all
Simon Glass4d869c12017-11-25 11:57:29 -070021 * 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
24 */
Philippe Reynes4ad4edf2019-12-17 19:07:04 +010025int cmd_ut_category(const char *name, const char *prefix,
26 struct unit_test *tests, int n_ents,
Simon Glass09140112020-05-10 11:40:03 -060027 int argc, char *const argv[]);
Simon Glass4d869c12017-11-25 11:57:29 -070028
Simon Glass09140112020-05-10 11:40:03 -060029int do_ut_bloblist(struct cmd_tbl *cmdtp, int flag, int argc,
30 char *const argv[]);
31int do_ut_compression(struct cmd_tbl *cmdtp, int flag, int argc,
32 char *const argv[]);
33int do_ut_dm(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
34int do_ut_env(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
35int do_ut_lib(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
36int do_ut_log(struct cmd_tbl *cmdtp, int flag, int argc, char * const argv[]);
Simon Glass550a9e72020-07-28 19:41:14 -060037int do_ut_mem(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
Simon Glass09140112020-05-10 11:40:03 -060038int do_ut_optee(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
39int do_ut_overlay(struct cmd_tbl *cmdtp, int flag, int argc,
40 char *const argv[]);
Simon Glass90a99012020-11-01 14:15:35 -070041int do_ut_setexpr(struct cmd_tbl *cmdtp, int flag, int argc,
42 char *const argv[]);
Simon Glass09140112020-05-10 11:40:03 -060043int do_ut_str(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
44int do_ut_time(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
45int do_ut_unicode(struct cmd_tbl *cmdtp, int flag, int argc,
46 char *const argv[]);
Joe Hershberger40441e02015-05-20 14:27:29 -050047
Joe Hershbergerc617ede2015-05-20 14:27:28 -050048#endif /* __TEST_SUITES_H__ */