diff mbox series

[1/1] test/py: describe env__efi_loader_helloworld_file

Message ID 20191219124129.139070-1-xypron.glpk@gmx.de
State Accepted, archived
Commit 3510280960ead6947a296d1d9b8744d3336381ea
Delegated to: Heinrich Schuchardt
Headers show
Series [1/1] test/py: describe env__efi_loader_helloworld_file | expand

Commit Message

Heinrich Schuchardt Dec. 19, 2019, 12:41 p.m. UTC
Describe the components of environment variable
env__efi_loader_helloworld_file.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
---
 test/py/tests/test_efi_loader.py | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

--
2.24.0
diff mbox series

Patch

diff --git a/test/py/tests/test_efi_loader.py b/test/py/tests/test_efi_loader.py
index d6b214f845..adf9d77452 100644
--- a/test/py/tests/test_efi_loader.py
+++ b/test/py/tests/test_efi_loader.py
@@ -43,9 +43,10 @@  env__net_static_env_vars = [
 # Details regarding a file that may be read from a TFTP server. This variable
 # may be omitted or set to None if TFTP testing is not possible or desired.
 env__efi_loader_helloworld_file = {
-    'fn': 'lib/efi_loader/helloworld.efi',
-    'size': 5058624,
-    'crc32': 'c2244b26',
+    'fn': 'lib/efi_loader/helloworld.efi', # file name
+    'size': 5058624,                       # file length in bytes
+    'crc32': 'c2244b26',                   # CRC32 check sum
+    'addr': 0x40400000,                    # load address
 }
 """