diff options
| author | Daniel Golle <[email protected]> | 2026-05-16 00:38:27 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-05-27 13:41:33 -0600 |
| commit | e7ee728ace3c6cc45fce3d8f14560d2be99ec07a (patch) | |
| tree | 5dc7edc8969bbc846aa997f4983476973c38a85c /test/cmd_ut.c | |
| parent | f34597790e655baf25ff3081da654f7fc725b56b (diff) | |
test: boot: add runtime unit test for fit_verity_build_cmdline()
Add test/boot/fit_verity.c with four tests that construct FIT blobs
in memory and exercise fit_verity_build_cmdline().
Signed-off-by: Daniel Golle <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Diffstat (limited to 'test/cmd_ut.c')
| -rw-r--r-- | test/cmd_ut.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/cmd_ut.c b/test/cmd_ut.c index 44e5fdfdaa6..d1b376f617c 100644 --- a/test/cmd_ut.c +++ b/test/cmd_ut.c @@ -59,6 +59,7 @@ SUITE_DECL(env); SUITE_DECL(exit); SUITE_DECL(fdt); SUITE_DECL(fdt_overlay); +SUITE_DECL(fit_verity); SUITE_DECL(font); SUITE_DECL(hush); SUITE_DECL(lib); @@ -86,6 +87,7 @@ static struct suite suites[] = { SUITE(exit, "shell exit and variables"), SUITE(fdt, "fdt command"), SUITE(fdt_overlay, "device tree overlays"), + SUITE(fit_verity, "FIT dm-verity cmdline generation"), SUITE(font, "font command"), SUITE(hush, "hush behaviour"), SUITE(lib, "library functions"), |
