tests/acpi: log the name of the table checked
Reviewed-by: Philippe Mathieu-Daudé <philmd@oss.qualcomm.com> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Message-ID: <20260824164751.1700783-9-kraxel@redhat.com>
Gerd Hoffmann committed
Aug 24, 2026 at 18:47 UTC
2a6dcfb640968f8ded7b8d14d10edfef82bb4369
1 file changed
+3
tests/qtest/bios-tables-test.c
+3
@@ -2616,6 +2616,9 @@ static void test_oem_fields(test_data *data)
2616
continue;
2617
}
2618
2619
+ if (verbosity_level >= 2) {
2620
+ fprintf(stderr, "Checking '%.4s'\n", sdt->aml);
2621
+ }
2622
g_assert(strncmp((char *)sdt->aml + 10, OEM_ID, 6) == 0);
2623
g_assert(strncmp((char *)sdt->aml + 16, OEM_TABLE_ID, 8) == 0);
2624
}