diff options
author | Simon Glass <sjg@chromium.org> | 2022-08-06 17:51:51 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-09-12 18:06:36 -0400 |
commit | a1f620eb4f3a05505452cfe2a297aca6d77c2df7 (patch) | |
tree | 107247360b18752a56c18848ab0ecc3164bb33f7 /test/py/tests | |
parent | e2c5113523426362b20650c10a022b6e56e86cf3 (diff) | |
download | u-boot-a1f620eb4f3a05505452cfe2a297aca6d77c2df7.tar.gz |
test: Make test_efi_bootmgr() single-threaded
This test seems to fail when run in parallel. Mark it single-threaded to
avoid any problems.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test/py/tests')
-rw-r--r-- | test/py/tests/test_efi_bootmgr/test_efi_bootmgr.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/py/tests/test_efi_bootmgr/test_efi_bootmgr.py b/test/py/tests/test_efi_bootmgr/test_efi_bootmgr.py index 75a6e7c962..1bb59d8fcf 100644 --- a/test/py/tests/test_efi_bootmgr/test_efi_bootmgr.py +++ b/test/py/tests/test_efi_bootmgr/test_efi_bootmgr.py @@ -7,6 +7,7 @@ import pytest @pytest.mark.boardspec('sandbox') @pytest.mark.buildconfigspec('cmd_efidebug') @pytest.mark.buildconfigspec('cmd_bootefi_bootmgr') +@pytest.mark.singlethread def test_efi_bootmgr(u_boot_console, efi_bootmgr_data): """ Unit test for UEFI bootmanager The efidebug command is used to set up UEFI load options. |