Re: [U-Boot] [PATCH 2/5] test/py: mmc: Add 'mmc dev' test

2019-03-18 Thread Simon Glass
On Thu, 14 Mar 2019 at 00:49, Marek Vasut  wrote:
>
> Add separate test for 'mmc dev' subcommand. This tests whether
> the system can switch to a specific card.
>
> Signed-off-by: Marek Vasut 
> Cc: Tom Rini 
> Cc: Simon Glass 
> ---
>  test/py/tests/test_mmc_rd.py | 21 +
>  1 file changed, 21 insertions(+)

Reviewed-by: Simon Glass 
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


[U-Boot] [PATCH 2/5] test/py: mmc: Add 'mmc dev' test

2019-03-13 Thread Marek Vasut
Add separate test for 'mmc dev' subcommand. This tests whether
the system can switch to a specific card.

Signed-off-by: Marek Vasut 
Cc: Tom Rini 
Cc: Simon Glass 
---
 test/py/tests/test_mmc_rd.py | 21 +
 1 file changed, 21 insertions(+)

diff --git a/test/py/tests/test_mmc_rd.py b/test/py/tests/test_mmc_rd.py
index 40ae1a8459..1337074d3f 100644
--- a/test/py/tests/test_mmc_rd.py
+++ b/test/py/tests/test_mmc_rd.py
@@ -83,6 +83,27 @@ def mmc_dev(u_boot_console, is_emmc, devid, partid):
 good_response = 'mmc%d%s is current device' % (devid, partid_response)
 assert good_response in response
 
+@pytest.mark.buildconfigspec('cmd_mmc')
+def test_mmc_dev(u_boot_console, env__mmc_rd_config):
+"""Test the "mmc dev" command.
+
+Args:
+u_boot_console: A U-Boot console connection.
+env__mmc_rd_config: The single MMC configuration on which
+to run the test. See the file-level comment above for details
+of the format.
+
+Returns:
+Nothing.
+"""
+
+is_emmc = env__mmc_rd_config['is_emmc']
+devid = env__mmc_rd_config['devid']
+partid = env__mmc_rd_config.get('partid', 0)
+
+# Select MMC device
+mmc_dev(u_boot_console, is_emmc, devid, partid)
+
 @pytest.mark.buildconfigspec('cmd_mmc')
 def test_mmc_rd(u_boot_console, env__mmc_rd_config):
 """Test the "mmc read" command.
-- 
2.20.1

___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot