blob: 48a1adbf285e6f4b40889955c42d7088754cf6b7 [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
7#include <common.h>
8#include <command.h>
9#include <test/hush.h>
10#include <test/suites.h>
11#include <test/ut.h>
12
13int do_ut_hush(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
14{
15 struct unit_test *tests = UNIT_TEST_SUITE_START(hush_test);
16 const int n_ents = UNIT_TEST_SUITE_COUNT(hush_test);
17
18 return cmd_ut_category("hush", "hush_test_",
19 tests, n_ents, argc, argv);
20}