test: Correct acpi test version numbers

Since the version of U-Boot changes all the time, we cannot make the
test check for the exact value. Just check part of it.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass
2025-08-04 06:50:38 -06:00
parent bfab0f797e
commit 71187d2e3a

View File

@@ -883,16 +883,16 @@ static int dm_test_acpi_get_end(struct unit_test_state *uts)
ut_assert_nextline("Name Base Size Detail");
ut_assert_nextlinen("--");
ut_assert_nextline("RSDP 0 24 v02 U-BOOT");
ut_assert_nextline(
"RSDT 30 30 v01 U-BOOT U-BOOTBL 20250101 INTL 0");
ut_assert_nextline(
"XSDT e0 3c v01 U-BOOT U-BOOTBL 20250101 INTL 0");
ut_assert_nextline(
"TST3 240 24 v00 U-BOOT U-BOOTBL 20250101 INTL 0");
ut_assert_nextline(
"TST1 264 24 v00 U-BOOT U-BOOTBL 20250101 INTL 0");
ut_assert_nextline(
"TST2 288 24 v00 U-BOOT U-BOOTBL 20250101 INTL 0");
ut_assert_nextlinen(
"RSDT 30 30 v01 U-BOOT U-BOOTBL 202");
ut_assert_nextlinen(
"XSDT e0 3c v01 U-BOOT U-BOOTBL 202");
ut_assert_nextlinen(
"TST3 240 24 v00 U-BOOT U-BOOTBL 202");
ut_assert_nextlinen(
"TST1 264 24 v00 U-BOOT U-BOOTBL 202");
ut_assert_nextlinen(
"TST2 288 24 v00 U-BOOT U-BOOTBL 202");
/* Restore previous ACPI tables */
gd_set_acpi_start(acpi_start);