summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAndrew Goodbody <[email protected]>2024-10-25 17:47:32 +0100
committerTom Rini <[email protected]>2024-10-27 20:11:30 -0600
commit467a84e0127ca6b8ca285c7a0b1ff625b6b2ca4b (patch)
treedc1d79166bf59aa32a531b966b9aa5c991a2d821 /test
parent2800aecce08b47b169d8e9824dd23b1297b2cedc (diff)
test: efi_loader: Fix dependency for http test
The config setting CMD_BOOTEFI_HELLO_COMPILE was removed in favour of BOOTEFI_HELLO_COMPILE but the dependency for test_efi_helloworld_net_http was not updated and so is now incorrect preventing the test from ever running. Fix it. Fixes: 6fe80876dcc7 ("efi_loader: Rename and move CMD_BOOTEFI_HELLO_COMPILE") Signed-off-by: Andrew Goodbody <[email protected]> Reviewed-by: Tom Rini <[email protected]> Reviewed-by: Ilias Apalodimas <[email protected]>
Diffstat (limited to 'test')
-rw-r--r--test/py/tests/test_efi_loader.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/py/tests/test_efi_loader.py b/test/py/tests/test_efi_loader.py
index 707b2c9e795..33434935fe9 100644
--- a/test/py/tests/test_efi_loader.py
+++ b/test/py/tests/test_efi_loader.py
@@ -182,7 +182,7 @@ def test_efi_helloworld_net_tftp(u_boot_console):
do_test_efi_helloworld_net(u_boot_console, PROTO_TFTP);
@pytest.mark.buildconfigspec('of_control')
[email protected]('cmd_bootefi_hello_compile')
[email protected]('bootefi_hello_compile')
@pytest.mark.buildconfigspec('cmd_wget')
def test_efi_helloworld_net_http(u_boot_console):
"""Run the helloworld.efi binary via HTTP.