tests/qtest: virtio-net-failover: Disable migration tests for win32
These tests use the exec migration protocol, which is unsupported on Windows as of today. Disable these tests for now. Signed-off-by: Xuzhou Cheng <xuzhou.cheng@windriver.com> Signed-off-by: Bin Meng <bin.meng@windriver.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Message-Id: <20220925113032.1949844-42-bmeng.cn@gmail.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
This commit is contained in:
parent
6b2906d65c
commit
a68667066a
@ -588,6 +588,7 @@ static void test_hotplug_2_reverse(void)
|
|||||||
machine_stop(qts);
|
machine_stop(qts);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef _WIN32
|
||||||
static QDict *migrate_status(QTestState *qts)
|
static QDict *migrate_status(QTestState *qts)
|
||||||
{
|
{
|
||||||
QDict *resp, *ret;
|
QDict *resp, *ret;
|
||||||
@ -1827,6 +1828,7 @@ static void test_multi_in(gconstpointer opaque)
|
|||||||
|
|
||||||
machine_stop(qts);
|
machine_stop(qts);
|
||||||
}
|
}
|
||||||
|
#endif /* _WIN32 */
|
||||||
|
|
||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
@ -1857,7 +1859,11 @@ int main(int argc, char **argv)
|
|||||||
qtest_add_func("failover-virtio-net/hotplug/2_reverse",
|
qtest_add_func("failover-virtio-net/hotplug/2_reverse",
|
||||||
test_hotplug_2_reverse);
|
test_hotplug_2_reverse);
|
||||||
|
|
||||||
/* migration tests */
|
#ifndef _WIN32
|
||||||
|
/*
|
||||||
|
* These migration tests cases use the exec migration protocol,
|
||||||
|
* which is unsupported on Windows.
|
||||||
|
*/
|
||||||
qtest_add_data_func("failover-virtio-net/migrate/on/out", tmpfile,
|
qtest_add_data_func("failover-virtio-net/migrate/on/out", tmpfile,
|
||||||
test_migrate_out);
|
test_migrate_out);
|
||||||
qtest_add_data_func("failover-virtio-net/migrate/on/in", tmpfile,
|
qtest_add_data_func("failover-virtio-net/migrate/on/in", tmpfile,
|
||||||
@ -1886,6 +1892,7 @@ int main(int argc, char **argv)
|
|||||||
tmpfile, test_multi_out);
|
tmpfile, test_multi_out);
|
||||||
qtest_add_data_func("failover-virtio-net/migrate/multi/in",
|
qtest_add_data_func("failover-virtio-net/migrate/multi/in",
|
||||||
tmpfile, test_multi_in);
|
tmpfile, test_multi_in);
|
||||||
|
#endif /* _WIN32 */
|
||||||
|
|
||||||
ret = g_test_run();
|
ret = g_test_run();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user