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 */ + if (compare_signature(sdt, "FPDT")) { + continue; + } + if (verbosity_level >= 2) { fprintf(stderr, "Checking '%.4s'\n", sdt->aml); } -- 2.55.0
