]> Git Repo - u-boot.git/blob - test/log/log_ut.c
Convert CONFIG_SDCARD et al to Kconfig
[u-boot.git] / test / log / log_ut.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (c) 2020, Heinrich Schuchardt <[email protected]>
4  *
5  * Logging function tests.
6  */
7
8 #include <common.h>
9 #include <console.h>
10 #include <log.h>
11 #include <test/log.h>
12 #include <test/suites.h>
13
14 int do_ut_log(struct cmd_tbl *cmdtp, int flag, int argc, char * const argv[])
15 {
16         struct unit_test *tests = UNIT_TEST_SUITE_START(log_test);
17         const int n_ents = UNIT_TEST_SUITE_COUNT(log_test);
18
19         return cmd_ut_category("log", "log_test_",
20                                tests, n_ents, argc, argv);
21 }
This page took 0.02911 seconds and 4 git commands to generate.