diff options
author | Heinrich Schuchardt | 2020-03-30 20:27:42 +0200 |
---|---|---|
committer | Heinrich Schuchardt | 2020-03-30 20:27:42 +0200 |
commit | 67357553ad59eb9b4f412412252e02868ceb16dc (patch) | |
tree | 230c46c8b435f4937e90fef0605e28fc4cbd1918 /test | |
parent | d4babee087f24a60d910659cb4367a077bad87a0 (diff) |
test/py: test_efi_grub_net() requires OF_CONTROL
With CONFIG_OF_CONTROL environment variable $fdtcontroladdr is not defined
and test_efi_grub_net() fails.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'test')
-rw-r--r-- | test/py/tests/test_efi_loader.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/py/tests/test_efi_loader.py b/test/py/tests/test_efi_loader.py index e105645484f..9465c28fbc5 100644 --- a/test/py/tests/test_efi_loader.py +++ b/test/py/tests/test_efi_loader.py @@ -170,6 +170,7 @@ def test_efi_helloworld_builtin(u_boot_console): expected_text = 'Hello, world' assert expected_text in output +@pytest.mark.buildconfigspec('of_control') @pytest.mark.buildconfigspec('cmd_bootefi') def test_efi_grub_net(u_boot_console): """Run the grub.efi binary via TFTP. |