diff options
author | Vikram Garhwal <vikram.garhwal@amd.com> | 2023-06-14 17:03:39 -0700 |
---|---|---|
committer | Stefano Stabellini <stefano.stabellini@amd.com> | 2023-06-15 16:46:58 -0700 |
commit | d8a714eba68cd7221d44a6acb6b8a69cf6f2f86b (patch) | |
tree | f4dad9ac7f77282504cef69af248fde1617621ed /tests | |
parent | aaea616d54317b8a0154adf52303a51da2d8d56f (diff) |
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>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/qtest/libqtest.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/qtest/libqtest.c b/tests/qtest/libqtest.c index 77de16227f..de03ef5f60 100644 --- a/tests/qtest/libqtest.c +++ b/tests/qtest/libqtest.c @@ -1465,7 +1465,8 @@ void qtest_cb_for_every_machine(void (*cb)(const char *machine), for (i = 0; machines[i].name != NULL; i++) { /* Ignore machines that cannot be used for qtests */ 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; } if (!skip_old_versioned || |