From: Cornelia Huck <cohuck@redhat.com>
To: Thomas Huth <thuth@redhat.com>
Cc: qemu-s390x@nongnu.org,
"Philippe Mathieu-Daudé" <philmd@redhat.com>,
qemu-devel@nongnu.org,
"Wainer dos Santos Moschetta" <wainersm@redhat.com>,
"Cleber Rosa" <crosa@redhat.com>
Subject: Re: [PATCH 1/3] tests/acceptance: Extract the code to clear dmesg and wait for CRW reports
Date: Mon, 14 Dec 2020 13:26:45 +0100 [thread overview]
Message-ID: <20201214132645.7fbc4c16.cohuck@redhat.com> (raw)
In-Reply-To: <20201211173134.376078-2-thuth@redhat.com>
On Fri, 11 Dec 2020 18:31:32 +0100
Thomas Huth <thuth@redhat.com> wrote:
> We will use this in more spots soon, so it's easier to put this into
> a separate function.
>
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
> tests/acceptance/machine_s390_ccw_virtio.py | 30 ++++++++++++---------
> 1 file changed, 17 insertions(+), 13 deletions(-)
>
> diff --git a/tests/acceptance/machine_s390_ccw_virtio.py b/tests/acceptance/machine_s390_ccw_virtio.py
> index 864ef4ee6e..733a7ca24a 100644
> --- a/tests/acceptance/machine_s390_ccw_virtio.py
> +++ b/tests/acceptance/machine_s390_ccw_virtio.py
> @@ -17,12 +17,24 @@ from avocado_qemu import wait_for_console_pattern
> class S390CCWVirtioMachine(Test):
> KERNEL_COMMON_COMMAND_LINE = 'printk.time=0 '
>
> + timeout = 120
> +
> def wait_for_console_pattern(self, success_message, vm=None):
> wait_for_console_pattern(self, success_message,
> failure_message='Kernel panic - not syncing',
> vm=vm)
>
> - timeout = 120
> + def wait_for_crw_reports(self):
> + exec_command_and_wait_for_pattern(self,
> + 'while ! (dmesg -c | grep CRW) ; do sleep 1 ; done',
> + 'CRW reports')
> +
> + dmesg_clear_count = 1
> + def clear_guests_dmesg(self):
<nitpick> Maybe clear_guest_dmesg? </nitpick>
> + exec_command_and_wait_for_pattern(self, 'dmesg -c > /dev/null; '
> + 'echo dm_clear\ ' + str(self.dmesg_clear_count),
> + 'dm_clear ' + str(self.dmesg_clear_count))
> + self.dmesg_clear_count += 1
>
> def test_s390x_devices(self):
>
next prev parent reply other threads:[~2020-12-14 12:27 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-12-11 17:31 [PATCH 0/3] tests/acceptance: Test virtio-rng and -balloon on s390x Thomas Huth
2020-12-11 17:31 ` [PATCH 1/3] tests/acceptance: Extract the code to clear dmesg and wait for CRW reports Thomas Huth
2020-12-11 20:10 ` Wainer dos Santos Moschetta
2020-12-14 12:26 ` Cornelia Huck [this message]
2020-12-11 17:31 ` [PATCH 2/3] tests/acceptance/machine_s390_ccw_virtio: Test virtio-rng via /dev/hwrng Thomas Huth
2020-12-11 20:30 ` Wainer dos Santos Moschetta
2020-12-12 7:10 ` Thomas Huth
2020-12-14 13:00 ` Cornelia Huck
2020-12-15 14:30 ` Wainer dos Santos Moschetta
2020-12-11 17:31 ` [PATCH 3/3] tests/acceptance/machine_s390_ccw_virtio: Test the virtio-balloon device Thomas Huth
2020-12-11 20:42 ` Wainer dos Santos Moschetta
2020-12-11 20:10 ` [PATCH 0/3] tests/acceptance: Test virtio-rng and -balloon on s390x Willian Rampazzo
2020-12-12 7:15 ` Thomas Huth
2020-12-14 11:39 ` Cornelia Huck
2020-12-14 15:14 ` Willian Rampazzo
2020-12-14 15:12 ` Willian Rampazzo
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=20201214132645.7fbc4c16.cohuck@redhat.com \
--to=cohuck@redhat.com \
--cc=crosa@redhat.com \
--cc=philmd@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-s390x@nongnu.org \
--cc=thuth@redhat.com \
--cc=wainersm@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).