aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2022-08-06 17:51:51 -0600
committerTom Rini <trini@konsulko.com>2022-09-12 18:06:36 -0400
commita1f620eb4f3a05505452cfe2a297aca6d77c2df7 (patch)
tree107247360b18752a56c18848ab0ecc3164bb33f7
parente2c5113523426362b20650c10a022b6e56e86cf3 (diff)
downloadu-boot-a1f620eb4f3a05505452cfe2a297aca6d77c2df7.zip
u-boot-a1f620eb4f3a05505452cfe2a297aca6d77c2df7.tar.gz
u-boot-a1f620eb4f3a05505452cfe2a297aca6d77c2df7.tar.bz2
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>
-rw-r--r--test/py/tests/test_efi_bootmgr/test_efi_bootmgr.py1
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 75a6e7c..1bb59d8 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.