From: Michal Simek Date: Fri, 2 Aug 2019 04:48:44 +0000 (+0200) Subject: test/py: Fix MMC/SD block write test dependency X-Git-Tag: v2019.10-rc2~11^2~7 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a09c1f7e1c1bba9b544aaf5ee2a90eaebfbedb5b;p=oweals%2Fu-boot.git 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 Reviewed-by: Peng Fan --- diff --git a/test/py/tests/test_mmc_wr.py b/test/py/tests/test_mmc_wr.py index 601279a6a4..7678c3c9c1 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.