tests/acpi: skip FPDT oem field test
The table comes from edk2 not qemu, so qemu has no control over these fields. Reviewed-by: Philippe Mathieu-Daudé <philmd@oss.qualcomm.com> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Message-ID: <20260824164751.1700783-10-kraxel@redhat.com>
Gerd Hoffmann committed
Aug 24, 2026 at 18:47 UTC
587e89e7eee425000a4ebeaaef1367e1e688c035
1 file changed
+5
tests/qtest/bios-tables-test.c
+5
@@ -2616,6 +2616,11 @@ static void test_oem_fields(test_data *data)
2616
continue;
2617
}
2618
2619
+ /* Firmware Performance Data created by EDK2 not QEMU */
2620
+ if (compare_signature(sdt, "FPDT")) {
2621
+ continue;
2622
+ }
2623
+
2624
if (verbosity_level >= 2) {
2625
fprintf(stderr, "Checking '%.4s'\n", sdt->aml);
2626
}