On 24/8/26 18:47, Gerd Hoffmann wrote:
The table comes from edk2 not qemu, so qemu
has no control over these fields.
Signed-off-by: Gerd Hoffmann <[email protected]>
---
tests/qtest/bios-tables-test.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/tests/qtest/bios-tables-test.c b/tests/qtest/bios-tables-test.c
index a85ca8e98253..ce3f770abbba 100644
--- a/tests/qtest/bios-tables-test.c
+++ b/tests/qtest/bios-tables-test.c
@@ -2616,6 +2616,11 @@ static void test_oem_fields(test_data *data)
continue;
}
+ /* created by edk2 not qemu */
/* Firmware Performance Data created by EDK2 not QEMU */
+ if (compare_signature(sdt, "FPDT")) {
+ continue;
+ }
+
if (verbosity_level >= 2) {
fprintf(stderr, "Checking '%.4s'\n", sdt->aml);
}
Reviewed-by: Philippe Mathieu-Daudé <[email protected]>