aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMichal Simek <michal.simek@xilinx.com>2019-08-02 06:48:44 +0200
committerPeng Fan <peng.fan@nxp.com>2019-08-09 13:45:25 +0800
commita09c1f7e1c1bba9b544aaf5ee2a90eaebfbedb5b (patch)
tree041714f47d59d9c4166ca11b48ed2180c2fb2376 /test
parent3148a3c2d32e3a0d58914d1a219e7fd2f0cb001e (diff)
downloadu-boot-a09c1f7e1c1bba9b544aaf5ee2a90eaebfbedb5b.zip
u-boot-a09c1f7e1c1bba9b544aaf5ee2a90eaebfbedb5b.tar.gz
u-boot-a09c1f7e1c1bba9b544aaf5ee2a90eaebfbedb5b.tar.bz2
test/py: Fix MMC/SD block write test dependency
Test is using random command which has own Kconfig symbol CMD_RANDOM which already depends on CMD_MEMORY. That's why replace cmd_memory by cmd_random. Fixes: 09da18deab8b ("test/py: add MMC/SD block write test") Signed-off-by: Michal Simek <michal.simek@xilinx.com> Reviewed-by: Peng Fan <peng.fan@nxp.com>
Diffstat (limited to 'test')
-rw-r--r--test/py/tests/test_mmc_wr.py2
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 601279a..7678c3c 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_memory')
+@pytest.mark.buildconfigspec('cmd_mmc','cmd_random')
def test_mmc_wr(u_boot_console, env__mmc_wr_config):
"""Test the "mmc write" command.