432cb7
From d94b3278c84cf7451489631d804a6b5cbd28a59d Mon Sep 17 00:00:00 2001
432cb7
From: Jon Maloy <jmaloy@redhat.com>
432cb7
Date: Wed, 30 Mar 2022 14:52:34 -0400
432cb7
Subject: [PATCH 13/18] tests: acpi: manually pad OEM_ID/OEM_TABLE_ID for
432cb7
 test_oem_fields() test
432cb7
432cb7
RH-Author: Jon Maloy <jmaloy@redhat.com>
432cb7
RH-MergeRequest: 141: acpi: fix QEMU crash when started with SLIC table
432cb7
RH-Commit: [5/10] 4ec8c738acec178c2f005f189b0c2a77a7af4088 (jmaloy/qemu-kvm)
432cb7
RH-Bugzilla: 2062611
432cb7
RH-Acked-by: Igor Mammedov <imammedo@redhat.com>
432cb7
432cb7
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=2062611
432cb7
Upstream: Merged
432cb7
432cb7
commit a849522f726767022203ef2b6c395ea19facb866
432cb7
Author: Igor Mammedov <imammedo@redhat.com>
432cb7
Date:   Wed Jan 12 08:03:29 2022 -0500
432cb7
432cb7
    tests: acpi: manually pad OEM_ID/OEM_TABLE_ID for test_oem_fields() test
432cb7
432cb7
    The next commit will revert OEM fields padding with whitespace to
432cb7
    padding with '\0' as it was before [1]. As result test_oem_fields() will
432cb7
    fail due to unexpectedly smaller ID sizes read from QEMU ACPI tables.
432cb7
432cb7
    Pad OEM_ID/OEM_TABLE_ID manually with spaces so that values the test
432cb7
    puts on QEMU CLI and expected values match.
432cb7
432cb7
    1) 602b458201 ("acpi: Permit OEM ID and OEM table ID fields to be changed")
432cb7
    Signed-off-by: Igor Mammedov <imammedo@redhat.com>
432cb7
    Message-Id: <20220112130332.1648664-2-imammedo@redhat.com>
432cb7
    Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
432cb7
    Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
432cb7
432cb7
(cherry picked from commit a849522f726767022203ef2b6c395ea19facb866)
432cb7
Signed-off-by: Jon Maloy <jmaloy@redhat.com>
432cb7
---
432cb7
 tests/qtest/bios-tables-test.c | 15 ++++++---------
432cb7
 1 file changed, 6 insertions(+), 9 deletions(-)
432cb7
432cb7
diff --git a/tests/qtest/bios-tables-test.c b/tests/qtest/bios-tables-test.c
432cb7
index e159b71136..348fdbd202 100644
432cb7
--- a/tests/qtest/bios-tables-test.c
432cb7
+++ b/tests/qtest/bios-tables-test.c
432cb7
@@ -71,9 +71,10 @@
432cb7
 
432cb7
 #define ACPI_REBUILD_EXPECTED_AML "TEST_ACPI_REBUILD_AML"
432cb7
 
432cb7
-#define OEM_ID             "TEST"
432cb7
-#define OEM_TABLE_ID       "OEM"
432cb7
-#define OEM_TEST_ARGS      "-machine x-oem-id="OEM_ID",x-oem-table-id="OEM_TABLE_ID
432cb7
+#define OEM_ID             "TEST  "
432cb7
+#define OEM_TABLE_ID       "OEM     "
432cb7
+#define OEM_TEST_ARGS      "-machine x-oem-id='" OEM_ID "',x-oem-table-id='" \
432cb7
+                           OEM_TABLE_ID "'"
432cb7
 
432cb7
 typedef struct {
432cb7
     bool tcg_only;
432cb7
@@ -1484,11 +1485,7 @@ static void test_acpi_q35_slic(void)
432cb7
 static void test_oem_fields(test_data *data)
432cb7
 {
432cb7
     int i;
432cb7
-    char oem_id[6];
432cb7
-    char oem_table_id[8];
432cb7
 
432cb7
-    strpadcpy(oem_id, sizeof oem_id, OEM_ID, ' ');
432cb7
-    strpadcpy(oem_table_id, sizeof oem_table_id, OEM_TABLE_ID, ' ');
432cb7
     for (i = 0; i < data->tables->len; ++i) {
432cb7
         AcpiSdtTable *sdt;
432cb7
 
432cb7
@@ -1498,8 +1495,8 @@ static void test_oem_fields(test_data *data)
432cb7
             continue;
432cb7
         }
432cb7
 
432cb7
-        g_assert(memcmp(sdt->aml + 10, oem_id, 6) == 0);
432cb7
-        g_assert(memcmp(sdt->aml + 16, oem_table_id, 8) == 0);
432cb7
+        g_assert(memcmp(sdt->aml + 10, OEM_ID, 6) == 0);
432cb7
+        g_assert(memcmp(sdt->aml + 16, OEM_TABLE_ID, 8) == 0);
432cb7
     }
432cb7
 }
432cb7
 
432cb7
-- 
432cb7
2.27.0
432cb7