On 04/06/2021 17.51, Alex Bennée wrote:
From: Philippe Mathieu-Daudé <[email protected]>
Various tests don't require TCG, but have '_tcg' in their name.
As this is misleading, remove 'tcg' from their name.
Reported-by: Igor Mammedov <[email protected]>
Reviewed-by: Igor Mammedov <[email protected]>
Signed-off-by: Philippe Mathieu-Daudé <[email protected]>
Signed-off-by: Alex Bennée <[email protected]>
Message-Id: <[email protected]>
---
tests/qtest/bios-tables-test.c | 142 ++++++++++++++++-----------------
1 file changed, 71 insertions(+), 71 deletions(-)
[...]
@@ -1255,7 +1255,7 @@ static void test_acpi_microvm_rtc_tcg(void)
free_test_data(&data);
}
-static void test_acpi_microvm_pcie_tcg(void)
+static void test_acpi_microvm_pcie(void)
{
test_data data;
This change is wrong: test_acpi_microvm_pcie_tcg() uses data.tcg_only =
true, so the _tcg suffix indeed makes sense here.
Thomas