mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 07:13:54 -06:00
test/qtest: add xepvh to skip list for qtest
Like existing xen machines, xenpvh also cannot be used for qtest. Signed-off-by: Vikram Garhwal <vikram.garhwal@amd.com> Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>
This commit is contained in:
parent
aaea616d54
commit
d8a714eba6
1 changed files with 2 additions and 1 deletions
|
@ -1465,7 +1465,8 @@ void qtest_cb_for_every_machine(void (*cb)(const char *machine),
|
||||||
for (i = 0; machines[i].name != NULL; i++) {
|
for (i = 0; machines[i].name != NULL; i++) {
|
||||||
/* Ignore machines that cannot be used for qtests */
|
/* Ignore machines that cannot be used for qtests */
|
||||||
if (!strncmp("xenfv", machines[i].name, 5) ||
|
if (!strncmp("xenfv", machines[i].name, 5) ||
|
||||||
g_str_equal("xenpv", machines[i].name)) {
|
g_str_equal("xenpv", machines[i].name) ||
|
||||||
|
g_str_equal("xenpvh", machines[i].name)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (!skip_old_versioned ||
|
if (!skip_old_versioned ||
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue