From: Michal Simek Date: Fri, 8 Sep 2017 08:09:17 +0000 (+0200) Subject: py: i2c: Do not run i2c eeprom test on qemu X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9fe2f228b97eaa5035ec2bc58b49b3cd8b359f73;p=thirdparty%2Fu-boot.git py: i2c: Do not run i2c eeprom test on qemu qemu has no i2c eeprom wired. Signed-off-by: Michal Simek --- diff --git a/test/py/tests/test_i2c.py b/test/py/tests/test_i2c.py index 9e6ff786e12..7195409fdcb 100644 --- a/test/py/tests/test_i2c.py +++ b/test/py/tests/test_i2c.py @@ -23,6 +23,7 @@ def test_i2c_probe(u_boot_console): response = u_boot_console.run_command("i2c probe") assert(expected_response in response) +@pytest.mark.boardidentity("!qemu") @pytest.mark.boardspec("zynq_zc702") @pytest.mark.boardspec("zynq_zc706") @pytest.mark.buildconfigspec("cmd_i2c")