2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2015-05-20 19:27:28 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2015
|
|
|
|
* Joe Hershberger, National Instruments, joe.hershberger@ni.com
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __TEST_SUITES_H__
|
|
|
|
#define __TEST_SUITES_H__
|
|
|
|
|
2017-11-25 18:57:29 +00:00
|
|
|
struct unit_test;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* cmd_ut_category() - Run a category of unit tests
|
|
|
|
*
|
|
|
|
* @name: Category name
|
2019-12-17 18:07:04 +00:00
|
|
|
* @prefix: Prefix of test name
|
2017-11-25 18:57:29 +00:00
|
|
|
* @tests: List of tests to run
|
|
|
|
* @n_ents: Number of tests in @tests
|
2018-08-27 20:04:10 +00:00
|
|
|
* @argc: Argument count provided. Must be >= 1. If this is 1 then all
|
2017-11-25 18:57:29 +00:00
|
|
|
* tests are run, otherwise only the one named @argv[1] is run.
|
|
|
|
* @argv: Arguments: argv[1] is the test to run (if @argc >= 2)
|
|
|
|
* @return 0 if OK, CMD_RET_FAILURE on failure
|
|
|
|
*/
|
2019-12-17 18:07:04 +00:00
|
|
|
int cmd_ut_category(const char *name, const char *prefix,
|
|
|
|
struct unit_test *tests, int n_ents,
|
2017-11-25 18:57:29 +00:00
|
|
|
int argc, char * const argv[]);
|
|
|
|
|
2018-11-16 01:43:53 +00:00
|
|
|
int do_ut_bloblist(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[]);
|
2018-08-31 19:31:28 +00:00
|
|
|
int do_ut_compression(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[]);
|
2015-05-20 19:27:29 +00:00
|
|
|
int do_ut_dm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
|
2015-05-20 19:27:36 +00:00
|
|
|
int do_ut_env(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
|
2019-01-30 06:53:31 +00:00
|
|
|
int do_ut_lib(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
|
2019-10-23 14:46:41 +00:00
|
|
|
int do_ut_optee(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
|
2016-07-05 08:26:46 +00:00
|
|
|
int do_ut_overlay(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
|
2015-05-20 19:27:30 +00:00
|
|
|
int do_ut_time(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
|
2018-08-31 19:31:28 +00:00
|
|
|
int do_ut_unicode(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
|
2015-05-20 19:27:29 +00:00
|
|
|
|
2015-05-20 19:27:28 +00:00
|
|
|
#endif /* __TEST_SUITES_H__ */
|