aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorHeinrich Schuchardt <xypron.glpk@gmx.de>2019-07-05 18:16:51 +0200
committerHeinrich Schuchardt <xypron.glpk@gmx.de>2019-07-06 21:25:32 +0200
commit0b1da53e534a89afc2f5ddcbe2bdbde83cf37523 (patch)
tree822723b6c196a5826f4045b776233a1cc4c819b8 /test
parentc7308d6e2307c763f0006f4933da3bfbb875bed7 (diff)
downloadu-boot-0b1da53e534a89afc2f5ddcbe2bdbde83cf37523.zip
u-boot-0b1da53e534a89afc2f5ddcbe2bdbde83cf37523.tar.gz
u-boot-0b1da53e534a89afc2f5ddcbe2bdbde83cf37523.tar.bz2
test/py: not all boards support UEFI runtime reset
As not all boards support resets at runtime do not test for it in the Python tests. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'test')
-rw-r--r--test/py/tests/test_efi_selftest.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/test/py/tests/test_efi_selftest.py b/test/py/tests/test_efi_selftest.py
index 516e41c..d5430f9 100644
--- a/test/py/tests/test_efi_selftest.py
+++ b/test/py/tests/test_efi_selftest.py
@@ -19,10 +19,6 @@ def test_efi_selftest(u_boot_console):
m = u_boot_console.p.expect(['Summary: 0 failures', 'Press any key'])
if m != 0:
raise Exception('Failures occurred during the EFI selftest')
- u_boot_console.run_command(cmd='', wait_for_echo=False, wait_for_prompt=False);
- m = u_boot_console.p.expect(['resetting', 'U-Boot'])
- if m != 0:
- raise Exception('Reset failed during the EFI selftest')
u_boot_console.restart_uboot();
@pytest.mark.buildconfigspec('cmd_bootefi_selftest')