u-boot/test/cmd/addrmap.c
Simon Glass 4ba3ab4901 test: Drop the _test suffix on linker lists
Most test suites have a _test suffix. This is not necessary as there is
also a ut_ prefix.

Drop the suffix so that (with future work) the suite name can be used as
the linker-list name.

Remove the suffix from the pytest regex as well, moving it to the top of
the file, as it is a constant.

Signed-off-by: Simon Glass <sjg@chromium.org>
2025-01-24 14:34:40 -06:00

35 lines
1,022 B
C

// SPDX-License-Identifier: GPL-2.0+
/*
* Tests for addrmap command
*
* Copyright (C) 2021, Bin Meng <bmeng.cn@gmail.com>
*/
#include <console.h>
#include <test/suites.h>
#include <test/ut.h>
/* Declare a new addrmap test */
#define ADDRMAP_TEST(_name, _flags) UNIT_TEST(_name, _flags, addrmap)
/* Test 'addrmap' command output */
static int addrmap_test_basic(struct unit_test_state *uts)
{
ut_assertok(run_command("addrmap", 0));
ut_assert_nextline(" vaddr paddr size");
ut_assert_nextline("================ ================ ================");
/* There should be at least one entry */
ut_assertok(!ut_check_console_end(uts));
return 0;
}
ADDRMAP_TEST(addrmap_test_basic, UTF_CONSOLE);
int do_ut_addrmap(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
{
struct unit_test *tests = UNIT_TEST_SUITE_START(addrmap);
const int n_ents = UNIT_TEST_SUITE_COUNT(addrmap);
return cmd_ut_category("addrmap", "cmd_addrmap_", tests, n_ents,
argc, argv);
}