[PATCH] tests/avocado: fix replay-linux test

Pavel Dovgalyuk posted 1 patch 1 year, 8 months ago
Failed in applying to current master (apply log)
tests/avocado/replay_linux.py |    1 +
1 file changed, 1 insertion(+)
[PATCH] tests/avocado: fix replay-linux test
Posted by Pavel Dovgalyuk 1 year, 8 months ago
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"))
Re: [PATCH] tests/avocado: fix replay-linux test
Posted by Alex Bennée 1 year, 8 months ago
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
Re: [PATCH] tests/avocado: fix replay-linux test
Posted by Alex Bennée 1 year, 8 months ago
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
Re: [PATCH] tests/avocado: fix replay-linux test
Posted by Philippe Mathieu-Daudé via 1 year, 8 months ago
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>