Message ID | f58fb904ed74d2f458d58fa3dc42a6c0914627fe.1724846454.git.jerome.forissier@linaro.org |
---|---|
State | Superseded |
Headers | show |
Series | Miscellaneous fixes | expand |
On Wed, 28 Aug 2024 at 15:10, Jerome Forissier <jerome.forissier@linaro.org> wrote: > > test_efi_helloworld_net() and test_efi_grub_net() depend on > cmd_tftpboot so add the missing annotations. > > Reported-by: Tom Rini <trini@konsulko.com> > Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org> > --- > test/py/tests/test_efi_loader.py | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/test/py/tests/test_efi_loader.py b/test/py/tests/test_efi_loader.py > index 85473a9049..7c1e0ffa59 100644 > --- a/test/py/tests/test_efi_loader.py > +++ b/test/py/tests/test_efi_loader.py > @@ -149,6 +149,7 @@ def fetch_tftp_file(u_boot_console, env_conf): > > @pytest.mark.buildconfigspec('of_control') > @pytest.mark.buildconfigspec('cmd_bootefi_hello_compile') > +@pytest.mark.buildconfigspec('cmd_tftpboot') > def test_efi_helloworld_net(u_boot_console): > """Run the helloworld.efi binary via TFTP. > > @@ -178,6 +179,7 @@ def test_efi_helloworld_builtin(u_boot_console): > > @pytest.mark.buildconfigspec('of_control') > @pytest.mark.buildconfigspec('cmd_bootefi') > +@pytest.mark.buildconfigspec('cmd_tftpboot') > def test_efi_grub_net(u_boot_console): > """Run the grub.efi binary via TFTP. > > -- > 2.40.1 > Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
diff --git a/test/py/tests/test_efi_loader.py b/test/py/tests/test_efi_loader.py index 85473a9049..7c1e0ffa59 100644 --- a/test/py/tests/test_efi_loader.py +++ b/test/py/tests/test_efi_loader.py @@ -149,6 +149,7 @@ def fetch_tftp_file(u_boot_console, env_conf): @pytest.mark.buildconfigspec('of_control') @pytest.mark.buildconfigspec('cmd_bootefi_hello_compile') +@pytest.mark.buildconfigspec('cmd_tftpboot') def test_efi_helloworld_net(u_boot_console): """Run the helloworld.efi binary via TFTP. @@ -178,6 +179,7 @@ def test_efi_helloworld_builtin(u_boot_console): @pytest.mark.buildconfigspec('of_control') @pytest.mark.buildconfigspec('cmd_bootefi') +@pytest.mark.buildconfigspec('cmd_tftpboot') def test_efi_grub_net(u_boot_console): """Run the grub.efi binary via TFTP.
test_efi_helloworld_net() and test_efi_grub_net() depend on cmd_tftpboot so add the missing annotations. Reported-by: Tom Rini <trini@konsulko.com> Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org> --- test/py/tests/test_efi_loader.py | 2 ++ 1 file changed, 2 insertions(+)