[PATCH v3 1/4] test: clean up setexpr_test_str()
Heinrich Schuchardt
heinrich.schuchardt at canonical.com
Mon Feb 3 16:10:26 CET 2025
Assign variable buf in the sub-test where it is used.
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt at canonical.com>
---
v3:
new patch
---
test/cmd/setexpr.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/cmd/setexpr.c b/test/cmd/setexpr.c
index 7f318a42ead..cc2003faab5 100644
--- a/test/cmd/setexpr.c
+++ b/test/cmd/setexpr.c
@@ -309,10 +309,10 @@ static int setexpr_test_str(struct unit_test_state *uts)
*/
ut_assertok(env_set("fred", "x"));
start_mem = ut_check_free();
- strcpy(buf, "hello");
ut_asserteq(1, run_command("setexpr.s fred 0", 0));
ut_assertok(ut_check_delta(start_mem));
+ strcpy(buf, "hello");
ut_assertok(env_set("fred", "12345"));
start_mem = ut_check_free();
ut_assertok(run_command("setexpr.s fred *0", 0));
--
2.47.1
More information about the U-Boot
mailing list