mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-26 15:28:50 +00:00
test: bdinfo: Test bdinfo -m
The bdinfo -m should print only the board memory layout. Test the expected output. Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
8827a38714
commit
2696f3ab81
1 changed files with 23 additions and 3 deletions
|
@ -130,13 +130,11 @@ static int lmb_test_dump_all(struct unit_test_state *uts, struct lmb *lmb)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int bdinfo_test_all(struct unit_test_state *uts)
|
static int bdinfo_check_mem(struct unit_test_state *uts)
|
||||||
{
|
{
|
||||||
struct bd_info *bd = gd->bd;
|
struct bd_info *bd = gd->bd;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
ut_assertok(test_num_l(uts, "boot_params", 0));
|
|
||||||
|
|
||||||
for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
|
for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
|
||||||
if (bd->bi_dram[i].size) {
|
if (bd->bi_dram[i].size) {
|
||||||
ut_assertok(test_num_l(uts, "DRAM bank", i));
|
ut_assertok(test_num_l(uts, "DRAM bank", i));
|
||||||
|
@ -147,6 +145,15 @@ static int bdinfo_test_all(struct unit_test_state *uts)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int bdinfo_test_all(struct unit_test_state *uts)
|
||||||
|
{
|
||||||
|
ut_assertok(test_num_l(uts, "boot_params", 0));
|
||||||
|
|
||||||
|
ut_assertok(bdinfo_check_mem(uts));
|
||||||
|
|
||||||
/* CONFIG_SYS_HAS_SRAM testing not supported */
|
/* CONFIG_SYS_HAS_SRAM testing not supported */
|
||||||
ut_assertok(test_num_l(uts, "flashstart", 0));
|
ut_assertok(test_num_l(uts, "flashstart", 0));
|
||||||
ut_assertok(test_num_l(uts, "flashsize", 0));
|
ut_assertok(test_num_l(uts, "flashsize", 0));
|
||||||
|
@ -243,6 +250,19 @@ static int bdinfo_test_help(struct unit_test_state *uts)
|
||||||
|
|
||||||
BDINFO_TEST(bdinfo_test_help, UT_TESTF_CONSOLE_REC);
|
BDINFO_TEST(bdinfo_test_help, UT_TESTF_CONSOLE_REC);
|
||||||
|
|
||||||
|
static int bdinfo_test_memory(struct unit_test_state *uts)
|
||||||
|
{
|
||||||
|
/* Test BDINFO memory layout only print */
|
||||||
|
ut_assertok(console_record_reset_enable());
|
||||||
|
ut_assertok(run_commandf("bdinfo -m"));
|
||||||
|
ut_assertok(bdinfo_check_mem(uts));
|
||||||
|
ut_assertok(ut_check_console_end(uts));
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
BDINFO_TEST(bdinfo_test_memory, UT_TESTF_CONSOLE_REC);
|
||||||
|
|
||||||
int do_ut_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
|
int do_ut_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
|
||||||
{
|
{
|
||||||
struct unit_test *tests = UNIT_TEST_SUITE_START(bdinfo_test);
|
struct unit_test *tests = UNIT_TEST_SUITE_START(bdinfo_test);
|
||||||
|
|
Loading…
Add table
Reference in a new issue