]> git.ipfire.org Git - thirdparty/u-boot.git/blame - test/common/cmd_ut_common.c
Revert "Merge patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet""
[thirdparty/u-boot.git] / test / common / cmd_ut_common.c
CommitLineData
25c8b9f2
SJ
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (c) 2019 Heinrich Schuchardt <xypron.glpk@gmx.de>
4 * Copyright (c) 2021 Steffen Jaeckel <jaeckel-floss@eyet-services.de>
5 *
6 * Unit tests for common functions
7 */
8
d678a59d 9#include <common.h>
25c8b9f2
SJ
10#include <command.h>
11#include <test/common.h>
12#include <test/suites.h>
13#include <test/ut.h>
14
15int do_ut_common(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
16{
17 struct unit_test *tests = UNIT_TEST_SUITE_START(common_test);
18 const int n_ents = UNIT_TEST_SUITE_COUNT(common_test);
19
20 return cmd_ut_category("common", "common_test_", tests, n_ents, argc,
21 argv);
22}