tests/qtest/migration: Define a machine for all architectures
Stop relying on defaults and select a machine explicitly for every architecture. This is a prerequisite for being able to select machine types for migration using different QEMU binaries for source and destination. Signed-off-by: Fabiano Rosas <farosas@suse.de> Reviewed-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Juan Quintela <quintela@redhat.com> Message-ID: <20231018192741.25885-8-farosas@suse.de>
This commit is contained in:
parent
dcf389cbc8
commit
c996139101
@ -743,6 +743,7 @@ static int test_migrate_start(QTestState **from, QTestState **to,
|
||||
const char *kvm_opts = NULL;
|
||||
const char *arch = qtest_get_arch();
|
||||
const char *memory_size;
|
||||
const char *machine_alias, *machine_opts = "";
|
||||
|
||||
if (args->use_shmem) {
|
||||
if (!g_file_test("/dev/shm", G_FILE_TEST_IS_DIR)) {
|
||||
@ -755,11 +756,13 @@ static int test_migrate_start(QTestState **from, QTestState **to,
|
||||
got_dst_resume = false;
|
||||
if (strcmp(arch, "i386") == 0 || strcmp(arch, "x86_64") == 0) {
|
||||
memory_size = "150M";
|
||||
machine_alias = "pc";
|
||||
arch_opts = g_strdup_printf("-drive file=%s,format=raw", bootpath);
|
||||
start_address = X86_TEST_MEM_START;
|
||||
end_address = X86_TEST_MEM_END;
|
||||
} else if (g_str_equal(arch, "s390x")) {
|
||||
memory_size = "128M";
|
||||
machine_alias = "s390-ccw-virtio";
|
||||
arch_opts = g_strdup_printf("-bios %s", bootpath);
|
||||
start_address = S390_TEST_MEM_START;
|
||||
end_address = S390_TEST_MEM_END;
|
||||
@ -771,11 +774,14 @@ static int test_migrate_start(QTestState **from, QTestState **to,
|
||||
"'nvramrc=hex .\" _\" begin %x %x "
|
||||
"do i c@ 1 + i c! 1000 +loop .\" B\" 0 "
|
||||
"until'", end_address, start_address);
|
||||
arch_opts = g_strdup("-nodefaults -machine vsmt=8");
|
||||
machine_alias = "pseries";
|
||||
machine_opts = "vsmt=8";
|
||||
arch_opts = g_strdup("-nodefaults");
|
||||
} else if (strcmp(arch, "aarch64") == 0) {
|
||||
memory_size = "150M";
|
||||
arch_opts = g_strdup_printf("-machine virt,gic-version=max -cpu max "
|
||||
"-kernel %s", bootpath);
|
||||
machine_alias = "virt";
|
||||
machine_opts = "gic-version=max";
|
||||
arch_opts = g_strdup_printf("-cpu max -kernel %s", bootpath);
|
||||
start_address = ARM_TEST_MEM_START;
|
||||
end_address = ARM_TEST_MEM_END;
|
||||
} else {
|
||||
@ -810,11 +816,13 @@ static int test_migrate_start(QTestState **from, QTestState **to,
|
||||
}
|
||||
|
||||
cmd_source = g_strdup_printf("-accel kvm%s -accel tcg "
|
||||
"-machine %s,%s "
|
||||
"-name source,debug-threads=on "
|
||||
"-m %s "
|
||||
"-serial file:%s/src_serial "
|
||||
"%s %s %s %s %s",
|
||||
kvm_opts ? kvm_opts : "",
|
||||
machine_alias, machine_opts,
|
||||
memory_size, tmpfs,
|
||||
arch_opts ? arch_opts : "",
|
||||
arch_source ? arch_source : "",
|
||||
@ -829,12 +837,14 @@ static int test_migrate_start(QTestState **from, QTestState **to,
|
||||
}
|
||||
|
||||
cmd_target = g_strdup_printf("-accel kvm%s -accel tcg "
|
||||
"-machine %s,%s "
|
||||
"-name target,debug-threads=on "
|
||||
"-m %s "
|
||||
"-serial file:%s/dest_serial "
|
||||
"-incoming %s "
|
||||
"%s %s %s %s %s",
|
||||
kvm_opts ? kvm_opts : "",
|
||||
machine_alias, machine_opts,
|
||||
memory_size, tmpfs, uri,
|
||||
arch_opts ? arch_opts : "",
|
||||
arch_target ? arch_target : "",
|
||||
|
Loading…
x
Reference in New Issue
Block a user