qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] tests/avocado: fix replay-linux test
@ 2022-08-02 10:36 Pavel Dovgalyuk
  2022-08-02 14:30 ` Philippe Mathieu-Daudé via
  2022-08-09  8:23 ` Alex Bennée
  0 siblings, 2 replies; 4+ messages in thread
From: Pavel Dovgalyuk @ 2022-08-02 10:36 UTC (permalink / raw)
  To: qemu-devel
  Cc: pavel.dovgalyuk, pbonzini, alex.bennee, philmd, crosa, wrampazz

Last line of the test is missing by accident.
This patch fixes the script.

Signed-off-by: Pavel Dovgalyuk <Pavel.Dovgalyuk@ispras.ru>
---
 tests/avocado/replay_linux.py |    1 +
 1 file changed, 1 insertion(+)

diff --git a/tests/avocado/replay_linux.py b/tests/avocado/replay_linux.py
index 40e4f6908e..e1f9981a34 100644
--- a/tests/avocado/replay_linux.py
+++ b/tests/avocado/replay_linux.py
@@ -189,3 +189,4 @@ def test_virt_gicv3(self):
 
         self.run_rr(shift=3,
                     args=(*self.get_common_args(),
+                          "-machine", "virt,gic-version=3"))



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] tests/avocado: fix replay-linux test
  2022-08-02 10:36 [PATCH] tests/avocado: fix replay-linux test Pavel Dovgalyuk
@ 2022-08-02 14:30 ` Philippe Mathieu-Daudé via
  2022-08-09  8:23 ` Alex Bennée
  1 sibling, 0 replies; 4+ messages in thread
From: Philippe Mathieu-Daudé via @ 2022-08-02 14:30 UTC (permalink / raw)
  To: Pavel Dovgalyuk
  Cc: qemu-devel@nongnu.org Developers, Paolo Bonzini, Alex Bennée,
	Philippe Mathieu-Daudé, Cleber Rosa, Willian Rampazzo

On Tue, Aug 2, 2022 at 12:46 PM Pavel Dovgalyuk
<pavel.dovgalyuk@ispras.ru> wrote:
>
> Last line of the test is missing by accident.
> This patch fixes the script.
>
> Signed-off-by: Pavel Dovgalyuk <Pavel.Dovgalyuk@ispras.ru>
> ---
>  tests/avocado/replay_linux.py |    1 +
>  1 file changed, 1 insertion(+)

Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] tests/avocado: fix replay-linux test
  2022-08-02 10:36 [PATCH] tests/avocado: fix replay-linux test Pavel Dovgalyuk
  2022-08-02 14:30 ` Philippe Mathieu-Daudé via
@ 2022-08-09  8:23 ` Alex Bennée
  2022-08-09  8:28   ` Alex Bennée
  1 sibling, 1 reply; 4+ messages in thread
From: Alex Bennée @ 2022-08-09  8:23 UTC (permalink / raw)
  To: Pavel Dovgalyuk; +Cc: qemu-devel, pbonzini, philmd, crosa, wrampazz


Pavel Dovgalyuk <pavel.dovgalyuk@ispras.ru> writes:

> Last line of the test is missing by accident.
> This patch fixes the script.
>
> Signed-off-by: Pavel Dovgalyuk <Pavel.Dovgalyuk@ispras.ru>
> ---
>  tests/avocado/replay_linux.py |    1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/tests/avocado/replay_linux.py b/tests/avocado/replay_linux.py
> index 40e4f6908e..e1f9981a34 100644
> --- a/tests/avocado/replay_linux.py
> +++ b/tests/avocado/replay_linux.py
> @@ -189,3 +189,4 @@ def test_virt_gicv3(self):
>  
>          self.run_rr(shift=3,
>                      args=(*self.get_common_args(),
> +                          "-machine", "virt,gic-version=3"))

Queued to testing/next, thanks.

-- 
Alex Bennée


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] tests/avocado: fix replay-linux test
  2022-08-09  8:23 ` Alex Bennée
@ 2022-08-09  8:28   ` Alex Bennée
  0 siblings, 0 replies; 4+ messages in thread
From: Alex Bennée @ 2022-08-09  8:28 UTC (permalink / raw)
  To: Pavel Dovgalyuk; +Cc: qemu-devel, pbonzini, philmd, crosa

[-- Attachment #1: Type: text/plain, Size: 980 bytes --]

ignore that - I see Thomas has already merged it.

On Tue, 9 Aug 2022 at 09:23, Alex Bennée <alex.bennee@linaro.org> wrote:

>
> Pavel Dovgalyuk <pavel.dovgalyuk@ispras.ru> writes:
>
> > Last line of the test is missing by accident.
> > This patch fixes the script.
> >
> > Signed-off-by: Pavel Dovgalyuk <Pavel.Dovgalyuk@ispras.ru>
> > ---
> >  tests/avocado/replay_linux.py |    1 +
> >  1 file changed, 1 insertion(+)
> >
> > diff --git a/tests/avocado/replay_linux.py
> b/tests/avocado/replay_linux.py
> > index 40e4f6908e..e1f9981a34 100644
> > --- a/tests/avocado/replay_linux.py
> > +++ b/tests/avocado/replay_linux.py
> > @@ -189,3 +189,4 @@ def test_virt_gicv3(self):
> >
> >          self.run_rr(shift=3,
> >                      args=(*self.get_common_args(),
> > +                          "-machine", "virt,gic-version=3"))
>
> Queued to testing/next, thanks.
>
> --
> Alex Bennée
>


-- 
Alex Bennée
KVM/QEMU Hacker for Linaro

[-- Attachment #2: Type: text/html, Size: 1619 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-08-09  8:31 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-08-02 10:36 [PATCH] tests/avocado: fix replay-linux test Pavel Dovgalyuk
2022-08-02 14:30 ` Philippe Mathieu-Daudé via
2022-08-09  8:23 ` Alex Bennée
2022-08-09  8:28   ` Alex Bennée

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).