]> Git Repo - J-u-boot.git/blame - test/common/cmd_ut_common.c
Init virtio before loading ENV from EXT4 or FAT
[J-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 <[email protected]>
4 * Copyright (c) 2021 Steffen Jaeckel <[email protected]>
5 *
6 * Unit tests for common functions
7 */
8
25c8b9f2
SJ
9#include <command.h>
10#include <test/common.h>
11#include <test/suites.h>
12#include <test/ut.h>
13
14int do_ut_common(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
15{
16 struct unit_test *tests = UNIT_TEST_SUITE_START(common_test);
17 const int n_ents = UNIT_TEST_SUITE_COUNT(common_test);
18
19 return cmd_ut_category("common", "common_test_", tests, n_ents, argc,
20 argv);
21}
This page took 0.09045 seconds and 4 git commands to generate.