blob: 1eb5955db1726ab46cb470c69581071bcf490efd [file] [log] [blame]
Bin Mengea309212021-02-25 17:22:35 +08001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Tests for addrmap command
4 *
5 * Copyright (C) 2021, Bin Meng <bmeng.cn@gmail.com>
6 */
7
8#include <common.h>
9#include <console.h>
10#include <test/suites.h>
11#include <test/ut.h>
12
13/* Declare a new addrmap test */
14#define ADDRMAP_TEST(_name, _flags) UNIT_TEST(_name, _flags, addrmap_test)
15
16/* Test 'addrmap' command output */
17static int addrmap_test_basic(struct unit_test_state *uts)
18{
19 ut_assertok(console_record_reset_enable());
20 ut_assertok(run_command("addrmap", 0));
21 ut_assert_nextline(" vaddr paddr size");
22 ut_assert_nextline("================ ================ ================");
23 /* There should be at least one entry */
24 ut_assertok(!ut_check_console_end(uts));
25
26 return 0;
27}
28ADDRMAP_TEST(addrmap_test_basic, UT_TESTF_CONSOLE_REC);
29
30int do_ut_addrmap(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
31{
Simon Glass28199612022-07-13 06:06:58 -060032 struct unit_test *tests = UNIT_TEST_SUITE_START(addrmap_test);
33 const int n_ents = UNIT_TEST_SUITE_COUNT(addrmap_test);
Bin Mengea309212021-02-25 17:22:35 +080034
35 return cmd_ut_category("cmd_addrmap", "cmd_addrmap_", tests, n_ents,
36 argc, argv);
37}