[Concept,09/21] test: vbe: Fix the ut-flag order in vbe_test_fixup_norun()

Message ID 20251214175449.3799539-10-sjg@u-boot.org
State New
Headers
Series test: Add support for passing arguments to C unit tests |

Commit Message

Simon Glass Dec. 14, 2025, 5:54 p.m. UTC
  From: Simon Glass <simon.glass@canonical.com>

Move the -f flag before the suite name since ut parses flags
before the suite argument.

Co-developed-by: Claude <noreply@anthropic.com>
Signed-off-by: Simon Glass <simon.glass@canonical.com>
---

 test/py/tests/test_vbe.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Patch

diff --git a/test/py/tests/test_vbe.py b/test/py/tests/test_vbe.py
index e5b489bc819..4ccf4fb937b 100644
--- a/test/py/tests/test_vbe.py
+++ b/test/py/tests/test_vbe.py
@@ -87,7 +87,7 @@  bootm loados
 bootm prep
 fdt addr
 fdt print
-ut bootstd -f vbe_test_fixup_norun
+ut -f bootstd vbe_test_fixup_norun
 '''
 
 @pytest.mark.boardspec('sandbox')