From eceb5c7a541668412d4bf5df3861b9f8339610e3 Mon Sep 17 00:00:00 2001 From: Michal Simek Date: Tue, 9 May 2017 15:36:13 +0200 Subject: [PATCH] test: py: qspi: Add dependency on bdinfo command There is another dependency on looking for ram base from bdinfo command. This should be probably fixed. Signed-off-by: Michal Simek --- test/py/tests/test_qspi.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/py/tests/test_qspi.py b/test/py/tests/test_qspi.py index ac634de7ec8..def5512003b 100644 --- a/test/py/tests/test_qspi.py +++ b/test/py/tests/test_qspi.py @@ -56,6 +56,7 @@ def qspi_pre_commands(u_boot_console): qspi_detected = True # Read the whole QSPI flash twice, random_size till full flash size, random till page size +@pytest.mark.buildconfigspec('cmd_bdi') @pytest.mark.buildconfigspec('cmd_sf') @pytest.mark.buildconfigspec('cmd_memory') def test_qspi_read_twice(u_boot_console): @@ -96,6 +97,7 @@ def test_qspi_erase_block(u_boot_console): assert expected_erase in output # Random write till page size, random till size and full size +@pytest.mark.buildconfigspec('cmd_bdi') @pytest.mark.buildconfigspec('cmd_sf') @pytest.mark.buildconfigspec('cmd_memory') def test_qspi_write_twice(u_boot_console): @@ -143,6 +145,7 @@ def test_qspi_erase_all(u_boot_console): assert expected_erase in output # Load FIT image and write boot.bin to start of qspi to be ready for qspi boot +@pytest.mark.buildconfigspec('cmd_bdi') @pytest.mark.buildconfigspec('cmd_sf') def test_qspi_boot_images(u_boot_console): qspi_pre_commands(u_boot_console) -- 2.47.3