On 8/7/24 19:52, Tom Rini wrote: > On Wed, Aug 07, 2024 at 07:12:06PM +0200, Jerome Forissier wrote: > >> Add a test to test_efi_loader.py similar to the TFTP test but for HTTP >> with the wget command. >> >> Suggested-by: Tom Rini <tr...@konsulko.com> >> Signed-off-by: Jerome Forissier <jerome.foriss...@linaro.org> > [snip] >> +@pytest.mark.buildconfigspec('of_control') >> +@pytest.mark.buildconfigspec('cmd_bootefi_hello_compile') >> +def test_efi_helloworld_net_tftp(u_boot_console): > > This should also depend on cmd_tftpboot (existing bug). Patch added to v9. >> + """Run the helloworld.efi binary via TFTP. >> + >> + The helloworld.efi file is downloaded from the TFTP server and is >> executed >> + using the fallback device tree at $fdtcontroladdr. >> + """ >> + >> + do_test_efi_helloworld_net(u_boot_console, PROTO_TFTP); >> + >> +@pytest.mark.buildconfigspec('of_control') >> +@pytest.mark.buildconfigspec('cmd_bootefi_hello_compile') >> +def test_efi_helloworld_net_http(u_boot_console): > > Then this needs to depend on cmd_wget as well. Right. Fixed in v9. > Kicking my local build > scripts to add wget and moving on... Thanks for testing! -- Jerome
- [PATCH v8 14/23] net: split cmd/net.c into cmd/net.c and ... Jerome Forissier
- [PATCH v8 15/23] net-lwip: add wget command Jerome Forissier
- [PATCH v8 16/23] net-lwip: lwIP wget supports user define... Jerome Forissier
- [PATCH v8 17/23] cmd: bdinfo: enable -e when CONFIG_CMD_N... Jerome Forissier
- [PATCH v8 18/23] configs: add qemu_arm64_lwip_defconfig Jerome Forissier
- [PATCH v8 19/23] lwip: tftp: add support of blksize optio... Jerome Forissier
- [PATCH v8 20/23] net-lwip: add TFTP_BLOCKSIZE Jerome Forissier
- [PATCH v8 21/23] CI: add qemu_arm64_lwip to the test matr... Jerome Forissier
- [PATCH v8 22/23] test/py: add HTTP (wget) test for the EF... Jerome Forissier
- Re: [PATCH v8 22/23] test/py: add HTTP (wget) test f... Tom Rini
- Re: [PATCH v8 22/23] test/py: add HTTP (wget) te... Jerome Forissier
- Re: [PATCH v8 22/23] test/py: add HTTP (wget) test f... Tom Rini
- Re: [PATCH v8 22/23] test/py: add HTTP (wget) te... Jerome Forissier
- Re: [PATCH v8 22/23] test/py: add HTTP (wget... Tom Rini
- Re: [PATCH v8 22/23] test/py: add HTTP (... Jerome Forissier
- Re: [PATCH v8 22/23] test/py: add HTTP (wget... Tom Rini
- Re: [PATCH v8 22/23] test/py: add HTTP (... Jerome Forissier
- [PATCH v8 23/23] MAINTAINERS: net-lwip: add myself as a m... Jerome Forissier
- [PATCH v8 04/23] net: introduce alternative implementatio... Jerome Forissier
- [PATCH v8 05/23] configs: replace '# CONFIG_NET is not se... Jerome Forissier
- [PATCH v8 10/23] net-lwip: add DHCP support and dhcp comm... Jerome Forissier