Francis Laniel | 2dba91a | 2023-12-22 22:02:21 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
| 2 | /* |
| 3 | * (C) Copyright 2021 |
| 4 | * Francis Laniel, Amarula Solutions, francis.laniel@amarulasolutions.com |
| 5 | */ |
| 6 | |
Francis Laniel | 2dba91a | 2023-12-22 22:02:21 +0100 | [diff] [blame] | 7 | #include <command.h> |
| 8 | #include <test/hush.h> |
| 9 | #include <test/suites.h> |
| 10 | #include <test/ut.h> |
| 11 | |
| 12 | int do_ut_hush(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) |
| 13 | { |
| 14 | struct unit_test *tests = UNIT_TEST_SUITE_START(hush_test); |
| 15 | const int n_ents = UNIT_TEST_SUITE_COUNT(hush_test); |
| 16 | |
| 17 | return cmd_ut_category("hush", "hush_test_", |
| 18 | tests, n_ents, argc, argv); |
| 19 | } |