qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
To: "Philippe Mathieu-Daudé" <philmd@redhat.com>
Cc: Laurent Vivier <lvivier@redhat.com>,
	Thomas Huth <thuth@redhat.com>,
	qemu-devel@nongnu.org, Markus Armbruster <armbru@redhat.com>,
	Gerd Hoffmann <kraxel@redhat.com>,
	Paolo Bonzini <pbonzini@redhat.com>,
	Laszlo Ersek <lersek@redhat.com>
Subject: Re: [PATCH 2/2] tests/fw_cfg: Test 'reboot-timeout=-1' special value
Date: Wed, 30 Oct 2019 18:41:53 +0000	[thread overview]
Message-ID: <20191030184153.GB3114@work-vm> (raw)
In-Reply-To: <20191029170124.27981-3-philmd@redhat.com>

* Philippe Mathieu-Daudé (philmd@redhat.com) wrote:
> The special value -1 means "don't reboot" for QEMU/libvirt.
> Add a trivial test.
> 
> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>

Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>

> ---
>  tests/fw_cfg-test.c | 21 +++++++++++++++++++++
>  1 file changed, 21 insertions(+)
> 
> diff --git a/tests/fw_cfg-test.c b/tests/fw_cfg-test.c
> index 1d3147f821..5dc807ba23 100644
> --- a/tests/fw_cfg-test.c
> +++ b/tests/fw_cfg-test.c
> @@ -194,6 +194,26 @@ static void test_fw_cfg_reboot_timeout(void)
>      qtest_quit(s);
>  }
>  
> +static void test_fw_cfg_no_reboot_timeout(void)
> +{
> +    QFWCFG *fw_cfg;
> +    QTestState *s;
> +    uint32_t reboot_timeout = 0;
> +    size_t filesize;
> +
> +    /* Special value -1 means "don't reboot" */
> +    s = qtest_init("-boot reboot-timeout=-1");
> +    fw_cfg = pc_fw_cfg_init(s);
> +
> +    filesize = qfw_cfg_get_file(fw_cfg, "etc/boot-fail-wait",
> +                                &reboot_timeout, sizeof(reboot_timeout));
> +    g_assert_cmpint(filesize, ==, sizeof(reboot_timeout));
> +    reboot_timeout = le32_to_cpu(reboot_timeout);
> +    g_assert_cmpint(reboot_timeout, ==, UINT32_MAX);
> +    pc_fw_cfg_uninit(fw_cfg);
> +    qtest_quit(s);
> +}
> +
>  static void test_fw_cfg_splash_time(void)
>  {
>      QFWCFG *fw_cfg;
> @@ -233,6 +253,7 @@ int main(int argc, char **argv)
>      qtest_add_func("fw_cfg/numa", test_fw_cfg_numa);
>      qtest_add_func("fw_cfg/boot_menu", test_fw_cfg_boot_menu);
>      qtest_add_func("fw_cfg/reboot_timeout", test_fw_cfg_reboot_timeout);
> +    qtest_add_func("fw_cfg/no_reboot_timeout", test_fw_cfg_no_reboot_timeout);
>      qtest_add_func("fw_cfg/splash_time", test_fw_cfg_splash_time);
>  
>      return g_test_run();
> -- 
> 2.21.0
> 
> 
--
Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK



  reply	other threads:[~2019-10-30 18:44 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-10-29 17:01 [PATCH 0/2] fw_cfg: Allow reboot-timeout=-1 again Philippe Mathieu-Daudé
2019-10-29 17:01 ` [PATCH 1/2] " Philippe Mathieu-Daudé
2019-10-29 17:01 ` [PATCH 2/2] tests/fw_cfg: Test 'reboot-timeout=-1' special value Philippe Mathieu-Daudé
2019-10-30 18:41   ` Dr. David Alan Gilbert [this message]
2019-10-31  8:46 ` [PATCH 0/2] fw_cfg: Allow reboot-timeout=-1 again Laszlo Ersek

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=20191030184153.GB3114@work-vm \
    --to=dgilbert@redhat.com \
    --cc=armbru@redhat.com \
    --cc=kraxel@redhat.com \
    --cc=lersek@redhat.com \
    --cc=lvivier@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=philmd@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=thuth@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).