From: Michal Simek Date: Fri, 25 May 2018 08:26:54 +0000 (+0200) Subject: ARM: zynq: Label eeprom test on zc702/zc706 as xfail X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=86487c5ed34599c5f311af43a2763ef1a3bb1bed;p=thirdparty%2Fu-boot.git ARM: zynq: Label eeprom test on zc702/zc706 as xfail This test is going to fail on Qemu because eeprom is not wired there. Signed-off-by: Michal Simek --- diff --git a/test/py/tests/test_i2c.py b/test/py/tests/test_i2c.py index 47d5feeb1ec..7a37f1d1969 100644 --- a/test/py/tests/test_i2c.py +++ b/test/py/tests/test_i2c.py @@ -36,6 +36,7 @@ def test_i2c_probe(u_boot_console): response = u_boot_console.run_command("i2c probe") assert(expected_response in response) +@pytest.mark.xfail @pytest.mark.boardspec("zynq_zc702") @pytest.mark.boardspec("zynq_zc706") @pytest.mark.buildconfigspec("cmd_i2c")