diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2017-11-26 14:05:21 +0100 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2017-12-01 13:39:32 +0100 |
commit | 45055aac9dad8d08f8691d7d5b116c23ad07a50d (patch) | |
tree | 90e9d5f8a62b899feff1109bcfbd4f6655920bb5 /test | |
parent | bbf75dd9345d0b1a7ec7a50016547eb7c759b7af (diff) | |
download | u-boot-45055aac9dad8d08f8691d7d5b116c23ad07a50d.tar.gz u-boot-45055aac9dad8d08f8691d7d5b116c23ad07a50d.tar.bz2 u-boot-45055aac9dad8d08f8691d7d5b116c23ad07a50d.zip |
test/py: check return code of helloworld
Check that helloworld.efi returns EFI_SUCCESS.
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'test')
-rw-r--r-- | test/py/tests/test_efi_loader.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/py/tests/test_efi_loader.py b/test/py/tests/test_efi_loader.py index 4d391e13ef..906ef2feaa 100644 --- a/test/py/tests/test_efi_loader.py +++ b/test/py/tests/test_efi_loader.py @@ -154,6 +154,8 @@ def test_efi_helloworld_net(u_boot_console): output = u_boot_console.run_command('bootefi %x' % addr) expected_text = 'Hello, world' assert expected_text in output + expected_text = '## Application terminated, r = 0' + assert expected_text in output @pytest.mark.buildconfigspec('cmd_bootefi_hello') def test_efi_helloworld_builtin(u_boot_console): |