blob: 76e282a6c7261d6b2a8009bae24285857fadaf76 [file] [log] [blame]
Heinrich Schuchardtd828a052017-09-15 10:06:12 +02001# 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
8import pytest
9import u_boot_utils
10
11@pytest.mark.buildconfigspec('cmd_bootefi_selftest')
12def 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();