This patch corrects comparing value instead of comparing objects
Signed-off-by: T Karthik Reddy <t.karthik.reddy@xilinx.com>
Signed-off-by: Siva Durga Prasad Paladugu <siva.durga.paladugu@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
if not m:
pytest.skip('bootmode cannnot be determined')
bootmode=m.group(1)
- if bootmode is "jtag":
+ if bootmode == "jtag":
pytest.skip('skipping due to jtag bootmode')
@pytest.mark.buildconfigspec('cmd_zynq_aes')
if not m:
pytest.skip('bootmode cannnot be determined')
bootmode=m.group(1)
- if bootmode is "jtag":
+ if bootmode == "jtag":
pytest.skip('skipping due to jtag bootmode')
@pytest.mark.buildconfigspec('cmd_zynq_rsa')