]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
test: efi_loader: Fix dependency for http test
authorAndrew Goodbody <andrew.goodbody@linaro.org>
Fri, 25 Oct 2024 16:47:32 +0000 (17:47 +0100)
committerTom Rini <trini@konsulko.com>
Mon, 28 Oct 2024 02:11:30 +0000 (20:11 -0600)
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 <andrew.goodbody@linaro.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
test/py/tests/test_efi_loader.py

index 707b2c9e7958c2cacbea4ea02e2e7e6c47f58a83..33434935fe94763ecaa76528c5013dd2ea089508 100644 (file)
@@ -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')
-@pytest.mark.buildconfigspec('cmd_bootefi_hello_compile')
+@pytest.mark.buildconfigspec('bootefi_hello_compile')
 @pytest.mark.buildconfigspec('cmd_wget')
 def test_efi_helloworld_net_http(u_boot_console):
     """Run the helloworld.efi binary via HTTP.