]> git.ipfire.org Git - people/ms/u-boot.git/blob - test/py/tests/test_efi_selftest.py
arm64: dts: sun50i: h5: Order nodes in alphabetic for orangepi-prime
[people/ms/u-boot.git] / test / py / tests / test_efi_selftest.py
1 # Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
2 # Copyright (c) 2017, Heinrich Schuchardt <xypron.glpk@gmx.de>
3 #
4 # SPDX-License-Identifier: GPL-2.0
5
6 # Test efi API implementation
7
8 import pytest
9 import u_boot_utils
10
11 @pytest.mark.buildconfigspec('cmd_bootefi_selftest')
12 def test_efi_selftest(u_boot_console):
13 """
14 Run bootefi selftest
15 """
16
17 u_boot_console.run_command(cmd='bootefi selftest', wait_for_prompt=False)
18 m = u_boot_console.p.expect(['Summary: 0 failures', 'Press any key'])
19 if m != 0:
20 raise Exception('Failures occured during the EFI selftest')
21 u_boot_console.run_command(cmd='', wait_for_echo=False, wait_for_prompt=False);
22 m = u_boot_console.p.expect(['resetting', 'U-Boot'])
23 if m != 0:
24 raise Exception('Reset failed during the EFI selftest')
25 u_boot_console.restart_uboot();