All of lore.kernel.org
 help / color / mirror / Atom feed
From: Michael Roth <mdroth@linux.vnet.ibm.com>
To: qemu-devel@nongnu.org
Cc: "Marc-André Lureau" <marcandre.lureau@redhat.com>,
	"Peter Maydell" <peter.maydell@linaro.org>
Subject: Re: [Qemu-devel] [PATCH] tests: test-qga, loosen assumptions about host filesystems
Date: Wed, 21 Oct 2015 10:19:47 -0500	[thread overview]
Message-ID: <20151021151947.18764.50381@loki> (raw)
In-Reply-To: <1445359759-7575-1-git-send-email-mdroth@linux.vnet.ibm.com>

Quoting Michael Roth (2015-10-20 11:49:19)
> QGA skips pseudo-filesystems when querying filesystems via
> guest-get-fsinfo. On some hosts, such as travis-ci which uses
> containers which simfs filesystems, QGA might not reports *any*
> filesystems. Our test case assumes there would be at least one,
> leading to false error messages in these situations.
> 
> Instead, sanity-check values iff we get at least one filesystem.
> 
> Cc: Marc-André Lureau <marcandre.lureau@redhat.com>
> Cc: Peter Maydell <peter.maydell@linaro.org>
> Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>

Applied with some spelling fixes:

  https://github.com/mdroth/qemu/commits/qga

> ---
>  tests/test-qga.c | 12 +++++++-----
>  1 file changed, 7 insertions(+), 5 deletions(-)
> 
> diff --git a/tests/test-qga.c b/tests/test-qga.c
> index 0531c9f..6473846 100644
> --- a/tests/test-qga.c
> +++ b/tests/test-qga.c
> @@ -273,13 +273,15 @@ static void test_qga_get_fsinfo(gconstpointer fix)
>      g_assert_nonnull(ret);
>      qmp_assert_no_error(ret);
> 
> -    /* check there is at least a fs */
> +    /* sanity-check the response if there are any filesystems */
>      list = qdict_get_qlist(ret, "return");
>      entry = qlist_first(list);
> -    g_assert(qdict_haskey(qobject_to_qdict(entry->value), "name"));
> -    g_assert(qdict_haskey(qobject_to_qdict(entry->value), "mountpoint"));
> -    g_assert(qdict_haskey(qobject_to_qdict(entry->value), "type"));
> -    g_assert(qdict_haskey(qobject_to_qdict(entry->value), "disk"));
> +    if (entry) {
> +        g_assert(qdict_haskey(qobject_to_qdict(entry->value), "name"));
> +        g_assert(qdict_haskey(qobject_to_qdict(entry->value), "mountpoint"));
> +        g_assert(qdict_haskey(qobject_to_qdict(entry->value), "type"));
> +        g_assert(qdict_haskey(qobject_to_qdict(entry->value), "disk"));
> +    }
> 
>      QDECREF(ret);
>  }
> -- 
> 1.9.1
> 

      reply	other threads:[~2015-10-21 15:20 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-10-20 16:49 [Qemu-devel] [PATCH] tests: test-qga, loosen assumptions about host filesystems Michael Roth
2015-10-21 15:19 ` Michael Roth [this message]

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=20151021151947.18764.50381@loki \
    --to=mdroth@linux.vnet.ibm.com \
    --cc=marcandre.lureau@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.