blob: abad44f3216b3cce2507a7948b8fad5eab93a619 [file] [log] [blame]
Francis Laniel2dba91a2023-12-22 22:02:21 +01001// SPDX-License-Identifier: GPL-2.0
2/*
3 * (C) Copyright 2021
4 * Francis Laniel, Amarula Solutions, francis.laniel@amarulasolutions.com
5 */
6
Francis Laniel2dba91a2023-12-22 22:02:21 +01007#include <command.h>
8#include <test/hush.h>
9#include <test/suites.h>
10#include <test/ut.h>
11
12int 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}