mirror of
https://github.com/qemu/qemu.git
synced 2024-12-13 22:43:32 +08:00
tests: Create migrate-start-postcopy command
This way, it is like the rest of commands Signed-off-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Reviewed-by: Peter Xu <peterx@redhat.com> Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
This commit is contained in:
parent
4c27486dc7
commit
eb665d7d92
@ -416,6 +416,15 @@ static void migrate(QTestState *who, const char *uri)
|
||||
QDECREF(rsp);
|
||||
}
|
||||
|
||||
static void migrate_start_postcopy(QTestState *who)
|
||||
{
|
||||
QDict *rsp;
|
||||
|
||||
rsp = wait_command(who, "{ 'execute': 'migrate-start-postcopy' }");
|
||||
g_assert(qdict_haskey(rsp, "return"));
|
||||
QDECREF(rsp);
|
||||
}
|
||||
|
||||
static void test_migrate_start(QTestState **from, QTestState **to,
|
||||
const char *uri)
|
||||
{
|
||||
@ -549,7 +558,6 @@ static void test_migrate(void)
|
||||
{
|
||||
char *uri = g_strdup_printf("unix:%s/migsocket", tmpfs);
|
||||
QTestState *from, *to;
|
||||
QDict *rsp;
|
||||
|
||||
test_migrate_start(&from, &to, uri);
|
||||
|
||||
@ -570,9 +578,7 @@ static void test_migrate(void)
|
||||
|
||||
wait_for_migration_pass(from);
|
||||
|
||||
rsp = wait_command(from, "{ 'execute': 'migrate-start-postcopy' }");
|
||||
g_assert(qdict_haskey(rsp, "return"));
|
||||
QDECREF(rsp);
|
||||
migrate_start_postcopy(from);
|
||||
|
||||
if (!got_stop) {
|
||||
qtest_qmp_eventwait(from, "STOP");
|
||||
|
Loading…
Reference in New Issue
Block a user