mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-06-22 06:32:23 +00:00
test: unit test for the EFI_TCG2_PROTOCOL
Encapsulate the UEFI EFI_TCG2_PROTOCOL unit test in an Python test. Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
This commit is contained in:
parent
617270b97b
commit
3b7bf8a9e4
1 changed files with 20 additions and 0 deletions
|
@ -210,3 +210,23 @@ def test_efi_selftest_text_input_ex(u_boot_console):
|
||||||
if m != 0:
|
if m != 0:
|
||||||
raise Exception('Failures occurred during the EFI selftest')
|
raise Exception('Failures occurred during the EFI selftest')
|
||||||
u_boot_console.restart_uboot()
|
u_boot_console.restart_uboot()
|
||||||
|
|
||||||
|
@pytest.mark.buildconfigspec('cmd_bootefi_selftest')
|
||||||
|
@pytest.mark.buildconfigspec('efi_tcg2_protocol')
|
||||||
|
def test_efi_selftest_tcg2(u_boot_console):
|
||||||
|
"""Test the EFI_TCG2 PROTOCOL
|
||||||
|
|
||||||
|
:param u_boot_console: U-Boot console
|
||||||
|
|
||||||
|
This function executes the 'tcg2' unit test.
|
||||||
|
"""
|
||||||
|
u_boot_console.restart_uboot()
|
||||||
|
u_boot_console.run_command(cmd='setenv efi_selftest list')
|
||||||
|
output = u_boot_console.run_command('bootefi selftest')
|
||||||
|
assert '\'tcg2\'' in output
|
||||||
|
u_boot_console.run_command(cmd='setenv efi_selftest tcg2')
|
||||||
|
u_boot_console.run_command(cmd='bootefi selftest', wait_for_prompt=False)
|
||||||
|
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.restart_uboot()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue