From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52242) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dzh5k-0007j7-S7 for qemu-devel@nongnu.org; Wed, 04 Oct 2017 06:39:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dzh5i-0004CV-5Y for qemu-devel@nongnu.org; Wed, 04 Oct 2017 06:39:52 -0400 Received: from mx1.redhat.com ([209.132.183.28]:49304) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dzh5h-0004Bc-VK for qemu-devel@nongnu.org; Wed, 04 Oct 2017 06:39:50 -0400 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 007384E4F3 for ; Wed, 4 Oct 2017 10:39:49 +0000 (UTC) From: Juan Quintela Date: Wed, 4 Oct 2017 12:39:33 +0200 Message-Id: <20171004103933.7898-7-quintela@redhat.com> In-Reply-To: <20171004103933.7898-1-quintela@redhat.com> References: <20171004103933.7898-1-quintela@redhat.com> Subject: [Qemu-devel] [PATCH 6/6] tests: Move postcopy migration test to migrate-set-parameters List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: dgilbert@redhat.com, lvivier@redhat.com, peterx@redhat.com migrate_set_speed and migrate_set_dowtime are deprecated since long ago. Signed-off-by: Juan Quintela --- tests/postcopy-test.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/postcopy-test.c b/tests/postcopy-test.c index 8142f2ab90..991b954a83 100644 --- a/tests/postcopy-test.c +++ b/tests/postcopy-test.c @@ -430,14 +430,14 @@ static void test_migrate(void) * machine, so also set the downtime. */ global_qtest = from; - rsp = qmp("{ 'execute': 'migrate_set_speed'," - "'arguments': { 'value': 100000000 } }"); + rsp = qmp("{ 'execute': 'migrate-set-parameters'," + "'arguments': { 'max-bandwidth': 100000000 } }"); g_assert(qdict_haskey(rsp, "return")); QDECREF(rsp); /* 1ms downtime - it should never finish precopy */ - rsp = qmp("{ 'execute': 'migrate_set_downtime'," - "'arguments': { 'value': 0.001 } }"); + rsp = qmp("{ 'execute': 'migrate-set-parameters'," + "'arguments': { 'downtime-limit': 1 } }"); g_assert(qdict_haskey(rsp, "return")); QDECREF(rsp); -- 2.13.5