aboutsummaryrefslogtreecommitdiff
path: root/test/py/conftest.py
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2021-03-07 17:35:11 -0700
committerTom Rini <trini@konsulko.com>2021-03-12 09:57:30 -0500
commit2a2814d5f2714a7b0aef9ea7f9d8d67a34875d55 (patch)
tree681bf3e33ccebe916bfd60425829d885dd45a35b /test/py/conftest.py
parenta7a98755b888254cbc1857c567ce898a8e105e0f (diff)
downloadu-boot-2a2814d5f2714a7b0aef9ea7f9d8d67a34875d55.zip
u-boot-2a2814d5f2714a7b0aef9ea7f9d8d67a34875d55.tar.gz
u-boot-2a2814d5f2714a7b0aef9ea7f9d8d67a34875d55.tar.bz2
test: Rename all linker lists to have a ut_ prefix
At present each test suite has its own portion of the linker_list section of the image, but other lists are interspersed. This makes it hard to enumerate all the available tests without knowing the suites that each one is in. Place all tests together in a single contiguous list by giving them common prefix not used elsewhere in U-Boot. This makes it possible to find the start and end of all tests. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test/py/conftest.py')
-rw-r--r--test/py/conftest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/py/conftest.py b/test/py/conftest.py
index 9bfd926..1b909cd 100644
--- a/test/py/conftest.py
+++ b/test/py/conftest.py
@@ -226,7 +226,7 @@ def pytest_configure(config):
import u_boot_console_exec_attach
console = u_boot_console_exec_attach.ConsoleExecAttach(log, ubconfig)
-re_ut_test_list = re.compile(r'_u_boot_list_2_(.*)_test_2_\1_test_(.*)\s*$')
+re_ut_test_list = re.compile(r'_u_boot_list_2_ut_(.*)_test_2_\1_test_(.*)\s*$')
def generate_ut_subtest(metafunc, fixture_name, sym_path):
"""Provide parametrization for a ut_subtest fixture.