diff options
author | Michal Simek <michal.simek@xilinx.com> | 2019-08-19 11:06:13 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-08-20 12:20:33 -0400 |
commit | 4f23d245112bd17898fda5601662d725d8aed9f9 (patch) | |
tree | dcbe2454187c87163accd666de9f679117da6313 | |
parent | cd1db463539fdb51716ca48603c4b1b922cb5aaf (diff) | |
download | u-boot-4f23d245112bd17898fda5601662d725d8aed9f9.tar.gz u-boot-4f23d245112bd17898fda5601662d725d8aed9f9.tar.bz2 u-boot-4f23d245112bd17898fda5601662d725d8aed9f9.zip |
test/py: Add cmd_memory dependency back to test_mmc_wr
Based on discussion with Stephen Warren there was recommendation to list
both memory and random command dependencies just in case that dependency is
not properly handled by Kconfig.
Fixes: a09c1f7e1c1b ("test/py: Fix MMC/SD block write test dependency")
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Acked-by: Stephen Warren <swarren@nvidia.com>
-rw-r--r-- | test/py/tests/test_mmc_wr.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/py/tests/test_mmc_wr.py b/test/py/tests/test_mmc_wr.py index 7678c3c9c1..8b18781eac 100644 --- a/test/py/tests/test_mmc_wr.py +++ b/test/py/tests/test_mmc_wr.py @@ -35,7 +35,7 @@ env__mmc_wr_configs = ( """ -@pytest.mark.buildconfigspec('cmd_mmc','cmd_random') +@pytest.mark.buildconfigspec('cmd_mmc','cmd_memory', 'cmd_random') def test_mmc_wr(u_boot_console, env__mmc_wr_config): """Test the "mmc write" command. |