From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
To: Juan Quintela <quintela@redhat.com>
Cc: qemu-devel@nongnu.org, lvivier@redhat.com, peterx@redhat.com
Subject: Re: [Qemu-devel] [PATCH v2 05/10] tests: check that migration parameters are really assigned
Date: Fri, 27 Oct 2017 04:47:14 +0100 [thread overview]
Message-ID: <20171027034713.GA13631@work-vm> (raw)
In-Reply-To: <20171026075222.27798-6-quintela@redhat.com>
* Juan Quintela (quintela@redhat.com) wrote:
> Signed-off-by: Juan Quintela <quintela@redhat.com>
> ---
> tests/migration-test.c | 27 ++++++++++++++++++++++++---
> 1 file changed, 24 insertions(+), 3 deletions(-)
>
> diff --git a/tests/migration-test.c b/tests/migration-test.c
> index c429a13403..be598d3257 100644
> --- a/tests/migration-test.c
> +++ b/tests/migration-test.c
> @@ -354,17 +354,37 @@ static void cleanup(const char *filename)
> g_free(path);
> }
>
> -static void migrate_set_downtime(QTestState *who, const char *value)
> +static void migrate_check_parameter(QTestState *who, const char *parameter,
> + const char *value)
> +{
> + QDict *rsp, *rsp_return;
> + const char *result;
> +
> + rsp = wait_command(who, "{ 'execute': 'query-migrate-parameters' }");
> + rsp_return = qdict_get_qdict(rsp, "return");
> + result = g_strdup_printf("%" PRId64,
> + qdict_get_try_int(rsp_return, parameter, -1));
> + g_assert_cmpstr(result, ==, value);
> + QDECREF(rsp);
> +}
> +
> +static void migrate_set_downtime(QTestState *who, const double value)
> {
> QDict *rsp;
> gchar *cmd;
> + char *expected;
> + int64_t result_int;
>
> cmd = g_strdup_printf("{ 'execute': 'migrate_set_downtime',"
> - "'arguments': { 'value': %s } }", value);
> + "'arguments': { 'value': %g } }", value);
I wonder if that will hit any FP representation problems for some
values?
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
> rsp = qtest_qmp(who, cmd);
> g_free(cmd);
> g_assert(qdict_haskey(rsp, "return"));
> QDECREF(rsp);
> + result_int = value * 1000L;
> + expected = g_strdup_printf("%" PRId64, result_int);
> + migrate_check_parameter(who, "downtime-limit", expected);
> + g_free(expected);
> }
>
> static void migrate_set_speed(QTestState *who, const char *value)
> @@ -378,6 +398,7 @@ static void migrate_set_speed(QTestState *who, const char *value)
> g_free(cmd);
> g_assert(qdict_haskey(rsp, "return"));
> QDECREF(rsp);
> + migrate_check_parameter(who, "max-bandwidth", value);
> }
>
> static void migrate_set_capability(QTestState *who, const char *capability,
> @@ -509,7 +530,7 @@ static void test_migrate(void)
> * machine, so also set the downtime.
> */
> migrate_set_speed(from, "100000000");
> - migrate_set_downtime(from, "0.001");
> + migrate_set_downtime(from, 0.001);
>
> /* Wait for the first serial output from the source */
> wait_for_serial("src_serial");
> --
> 2.13.6
>
--
Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK
next prev parent reply other threads:[~2017-10-27 3:47 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-26 7:52 [Qemu-devel] [PATCH v2 00/10] Add make check tests for Migration Juan Quintela
2017-10-26 7:52 ` [Qemu-devel] [PATCH v2 01/10] tests: rename postcopy-test to migration-test Juan Quintela
2017-10-27 1:50 ` Dr. David Alan Gilbert
2017-10-26 7:52 ` [Qemu-devel] [PATCH v2 02/10] tests: Refactor setting of parameters/capabilities Juan Quintela
2017-10-27 1:54 ` Dr. David Alan Gilbert
2017-10-26 7:52 ` [Qemu-devel] [PATCH v2 03/10] tests: Factorize out migrate_test_start/end Juan Quintela
2017-10-27 2:15 ` Dr. David Alan Gilbert
2017-10-26 7:52 ` [Qemu-devel] [PATCH v2 04/10] tests: Don't abuse global_qtest Juan Quintela
2017-10-27 2:37 ` Dr. David Alan Gilbert
2017-10-29 8:29 ` Juan Quintela
2017-10-26 7:52 ` [Qemu-devel] [PATCH v2 05/10] tests: check that migration parameters are really assigned Juan Quintela
2017-10-27 3:47 ` Dr. David Alan Gilbert [this message]
2017-10-29 8:30 ` Juan Quintela
2017-10-29 13:24 ` Peter Xu
2017-10-30 13:28 ` Juan Quintela
2017-10-26 7:52 ` [Qemu-devel] [PATCH v2 06/10] tests: Add migration precopy test Juan Quintela
2017-10-29 13:56 ` Peter Xu
2017-10-26 7:52 ` [Qemu-devel] [PATCH v2 07/10] tests: Add basic migration precopy tcp test Juan Quintela
2017-10-26 7:52 ` [Qemu-devel] [PATCH v2 08/10] tests: Add precopy test using deprecated commands Juan Quintela
2017-10-29 13:40 ` Peter Xu
2017-10-26 7:52 ` [Qemu-devel] [PATCH v2 09/10] tests: Add migration xbzrle test Juan Quintela
2017-10-26 7:52 ` [Qemu-devel] [PATCH v2 10/10] [RFH] tests: Add migration compress threads tests Juan Quintela
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20171027034713.GA13631@work-vm \
--to=dgilbert@redhat.com \
--cc=lvivier@redhat.com \
--cc=peterx@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=quintela@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).