diff options
author | Simon Glass <sjg@chromium.org> | 2023-04-20 11:38:16 +1200 |
---|---|---|
committer | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2023-05-04 09:57:43 +0200 |
commit | 27a03f03b214dbb988c5b40ce49743442544578a (patch) | |
tree | f1c70a71d4683f647945198f72636395765e859a /test/py/tests | |
parent | feff3e6c3823acd0262bfdf96486a8dc3800b209 (diff) |
efi: Rename the base efi self-test
This function uses the same base name as all the others in this file, so
it is not easy to run just that one test. Add a _base suffix so that it
can be run on its own.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Diffstat (limited to 'test/py/tests')
-rw-r--r-- | test/py/tests/test_efi_selftest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/py/tests/test_efi_selftest.py b/test/py/tests/test_efi_selftest.py index e92d63cde6..43f2424558 100644 --- a/test/py/tests/test_efi_selftest.py +++ b/test/py/tests/test_efi_selftest.py @@ -7,7 +7,7 @@ import pytest @pytest.mark.buildconfigspec('cmd_bootefi_selftest') -def test_efi_selftest(u_boot_console): +def test_efi_selftest_base(u_boot_console): """Run UEFI unit tests u_boot_console -- U-Boot console |