diff options
author | Simon Glass | 2022-10-20 18:23:12 -0600 |
---|---|---|
committer | Tom Rini | 2022-10-31 11:03:36 -0400 |
commit | e45d22655aed0c81fa5890f47c1647c6e95bedb6 (patch) | |
tree | 3a53749d09f992266d063a774a0e235a563a5a37 /test | |
parent | c263e21bcb01f19e6ccb2452fdcc601ff84942db (diff) |
vbe: Drop the U-Boot prefix from the version
We don't need the U-Boot prefix on the version and in fact it is harmful
since pytest gets confused seeing the U-Boot banner bring displayed when
the version is printed.
Drop the prefix from the string.
We could produce an entirely new string from the component parts, but this
adds to the rodata size and would break the use of version_string as the
only thing which holds this information.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test')
-rw-r--r-- | test/boot/vbe_simple.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/boot/vbe_simple.c b/test/boot/vbe_simple.c index faba9e8f90b..a50785dbbf6 100644 --- a/test/boot/vbe_simple.c +++ b/test/boot/vbe_simple.c @@ -77,7 +77,7 @@ static int vbe_simple_test_base(struct unit_test_state *uts) bl_version = ofnode_read_string(node, "bootloader-version"); ut_assertnonnull(bl_version); - ut_asserteq_str(version_string, bl_version); + ut_asserteq_str(version_string + 7, bl_version); return 0; } |