test: Increase expect_str/actual_str buffer size

These buffers can be exceeded when checking the FIT output with an RSA
key. Increase the limit to 1K.

Co-developed-by: Claude <noreply@anthropic.com>
Signed-off-by: Simon Glass <simon.glass@canonical.com>
This commit is contained in:
Simon Glass
2025-11-17 16:49:39 -07:00
parent daf122806e
commit 62a456012f

View File

@@ -78,8 +78,8 @@ struct unit_test_state {
bool force_run;
void *old_bloblist;
bool soft_fail;
char expect_str[512];
char actual_str[512];
char expect_str[1024];
char actual_str[1024];
};
/* Test flags for each test */