blob: f120b3a82a079ea97573917038fc526158ec78ea [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[]);
37int do_ut_optee(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
38int do_ut_overlay(struct cmd_tbl *cmdtp, int flag, int argc,
39 char *const argv[]);
40int do_ut_str(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
41int do_ut_time(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
42int do_ut_unicode(struct cmd_tbl *cmdtp, int flag, int argc,
43 char *const argv[]);
Joe Hershberger40441e02015-05-20 14:27:29 -050044
Joe Hershbergerc617ede2015-05-20 14:27:28 -050045#endif /* __TEST_SUITES_H__ */