diff options
| author | Tom Rini <[email protected]> | 2021-07-23 14:50:43 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2021-07-23 14:50:43 -0400 |
| commit | edecc15eb9593b94dcd6a5f4f5ea5f134125b6a0 (patch) | |
| tree | 1c8f414dc7ae2d0e914a706e3dd8aaebb945c946 /include/test | |
| parent | f534d93cbf34f1d1762b04eb5680e84bef5e1fe1 (diff) | |
| parent | 25c8b9f298e46ea6048b5308f7ee207c6461c36a (diff) | |
Merge branch '2021-07-23-reboot-mode-and-cryptfs-passwd-support'
- A new driver uclass is created to handle the reboot mode control.
- Add support for libcrypt-style passwords for autoboot
Diffstat (limited to 'include/test')
| -rw-r--r-- | include/test/common.h | 15 | ||||
| -rw-r--r-- | include/test/suites.h | 1 |
2 files changed, 16 insertions, 0 deletions
diff --git a/include/test/common.h b/include/test/common.h new file mode 100644 index 00000000000..81260d06ad6 --- /dev/null +++ b/include/test/common.h @@ -0,0 +1,15 @@ +/* SPDX-License-Identifier: GPL-2.0 */ +/* + * Copyright (c) 2019 Heinrich Schuchardt <[email protected]> + * Copyright (c) 2021 Steffen Jaeckel <[email protected]> + */ + +#ifndef __TEST_COMMON_H__ +#define __TEST_COMMON_H__ + +#include <test/test.h> + +/* Declare a new common function test */ +#define COMMON_TEST(_name, _flags) UNIT_TEST(_name, _flags, common_test) + +#endif /* __TEST_COMMON_H__ */ diff --git a/include/test/suites.h b/include/test/suites.h index 80b41f188c7..d35cd83a4eb 100644 --- a/include/test/suites.h +++ b/include/test/suites.h @@ -31,6 +31,7 @@ int do_ut_addrmap(struct cmd_tbl *cmdtp, int flag, int argc, int do_ut_bootm(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]); int do_ut_bloblist(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]); +int do_ut_common(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]); int do_ut_compression(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]); int do_ut_dm(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]); |
