mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06:00
tests: qemu: Unify fake machine types filled in for KVM and TCG caps of x86_64
For testing with synthetic capabilities we pre-fill the qemu capabilities with some machine types. Historically there were two arrays for KVM and TCG but that's not necessary. Make both instances of x86_64 data share the same array as the other architectures do. This will later on simplify filling in all the other machine types which are required for the test suite. Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
@@ -41,11 +41,8 @@ static const virArch arch_alias[VIR_ARCH_LAST] = {
|
||||
static const char *const i386_machines[] = {
|
||||
"pc", "isapc", NULL
|
||||
};
|
||||
static const char *const x86_64_machines_kvm[] = {
|
||||
"pc", "isapc", NULL
|
||||
};
|
||||
static const char *const x86_64_machines_qemu[] = {
|
||||
"pc-0.11", "pc", "pc-0.10", "isapc", NULL
|
||||
static const char *const x86_64_machines[] = {
|
||||
"pc", "pc-0.11", "pc-0.10", "isapc", NULL
|
||||
};
|
||||
static const char *const aarch64_machines[] = {
|
||||
"virt", NULL
|
||||
@@ -71,7 +68,7 @@ static const char *const s390x_machines[] = {
|
||||
|
||||
static const char *const *qemu_machines[VIR_ARCH_LAST] = {
|
||||
[VIR_ARCH_I686] = i386_machines,
|
||||
[VIR_ARCH_X86_64] = x86_64_machines_qemu,
|
||||
[VIR_ARCH_X86_64] = x86_64_machines,
|
||||
[VIR_ARCH_AARCH64] = aarch64_machines,
|
||||
[VIR_ARCH_ARMV7L] = arm_machines,
|
||||
[VIR_ARCH_PPC64] = ppc64_machines,
|
||||
@@ -83,7 +80,7 @@ static const char *const *qemu_machines[VIR_ARCH_LAST] = {
|
||||
|
||||
static const char *const *kvm_machines[VIR_ARCH_LAST] = {
|
||||
[VIR_ARCH_I686] = i386_machines,
|
||||
[VIR_ARCH_X86_64] = x86_64_machines_kvm,
|
||||
[VIR_ARCH_X86_64] = x86_64_machines,
|
||||
[VIR_ARCH_AARCH64] = aarch64_machines,
|
||||
[VIR_ARCH_ARMV7L] = arm_machines,
|
||||
[VIR_ARCH_PPC64] = ppc64_machines,
|
||||
|
||||
Reference in New Issue
Block a user