diff options
author | Igor Mammedov <imammedo@redhat.com> | 2019-05-02 16:51:55 +0200 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2019-05-20 18:40:02 -0400 |
commit | d47a5d64455eb21f98743c3d624be40c97a63b5a (patch) | |
tree | b4720ce00ddce331e032c614b17b7b25683f1344 /tests | |
parent | 40dfd0a8cd205a5c92219bde75002644c8e817ad (diff) |
tests: acpi: move boot_sector_init() into x86 tests branch
boot_sector_init() won't be used by arm/virt board, so move it from
global scope to x86 branch that uses it.
Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <1556808723-226478-8-git-send-email-imammedo@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/bios-tables-test.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/bios-tables-test.c b/tests/bios-tables-test.c index e2fc34143d..4d13a3cce6 100644 --- a/tests/bios-tables-test.c +++ b/tests/bios-tables-test.c @@ -788,13 +788,14 @@ int main(int argc, char *argv[]) const char *arch = qtest_get_arch(); int ret; - ret = boot_sector_init(disk); - if(ret) - return ret; - g_test_init(&argc, &argv, NULL); if (strcmp(arch, "i386") == 0 || strcmp(arch, "x86_64") == 0) { + ret = boot_sector_init(disk); + if (ret) { + return ret; + } + qtest_add_func("acpi/piix4", test_acpi_piix4_tcg); qtest_add_func("acpi/piix4/bridge", test_acpi_piix4_tcg_bridge); qtest_add_func("acpi/q35", test_acpi_q35_tcg); |