qemu-riscv.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] tests/functional/riscv64/test_sifive_u: Remove unused import statement
@ 2025-10-27 11:28 Thomas Huth
  2025-10-27 12:01 ` Philippe Mathieu-Daudé
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Thomas Huth @ 2025-10-27 11:28 UTC (permalink / raw)
  To: Palmer Dabbelt, Alistair Francis, Weiwei Li,
	Daniel Henrique Barboza, Liu Zhiwei, qemu-riscv, qemu-devel

From: Thomas Huth <thuth@redhat.com>

skipIfMissingCommands is not used here, remove the import to silence
a pylint warning for this file.

Signed-off-by: Thomas Huth <thuth@redhat.com>
---
 tests/functional/riscv64/test_sifive_u.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/tests/functional/riscv64/test_sifive_u.py b/tests/functional/riscv64/test_sifive_u.py
index 358ff0d1f60..847f709da12 100755
--- a/tests/functional/riscv64/test_sifive_u.py
+++ b/tests/functional/riscv64/test_sifive_u.py
@@ -13,7 +13,6 @@
 import os
 
 from qemu_test import Asset, LinuxKernelTest
-from qemu_test import skipIfMissingCommands
 
 
 class SifiveU(LinuxKernelTest):
-- 
2.51.0



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

* Re: [PATCH] tests/functional/riscv64/test_sifive_u: Remove unused import statement
  2025-10-27 11:28 [PATCH] tests/functional/riscv64/test_sifive_u: Remove unused import statement Thomas Huth
@ 2025-10-27 12:01 ` Philippe Mathieu-Daudé
  2025-10-27 13:20 ` Daniel Henrique Barboza
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Philippe Mathieu-Daudé @ 2025-10-27 12:01 UTC (permalink / raw)
  To: Thomas Huth, Palmer Dabbelt, Alistair Francis, Weiwei Li,
	Daniel Henrique Barboza, Liu Zhiwei, qemu-riscv, qemu-devel

On 27/10/25 12:28, Thomas Huth wrote:
> From: Thomas Huth <thuth@redhat.com>
> 
> skipIfMissingCommands is not used here, remove the import to silence
> a pylint warning for this file.
> 
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
>   tests/functional/riscv64/test_sifive_u.py | 1 -
>   1 file changed, 1 deletion(-)

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>



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

* Re: [PATCH] tests/functional/riscv64/test_sifive_u: Remove unused import statement
  2025-10-27 11:28 [PATCH] tests/functional/riscv64/test_sifive_u: Remove unused import statement Thomas Huth
  2025-10-27 12:01 ` Philippe Mathieu-Daudé
@ 2025-10-27 13:20 ` Daniel Henrique Barboza
  2025-10-28  4:05 ` Nutty.Liu
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Daniel Henrique Barboza @ 2025-10-27 13:20 UTC (permalink / raw)
  To: Thomas Huth, Palmer Dabbelt, Alistair Francis, Weiwei Li,
	Liu Zhiwei, qemu-riscv, qemu-devel



On 10/27/25 8:28 AM, Thomas Huth wrote:
> From: Thomas Huth <thuth@redhat.com>
> 
> skipIfMissingCommands is not used here, remove the import to silence
> a pylint warning for this file.
> 
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---

Reviewed-by: Daniel Henrique Barboza <dbarboza@ventanamicro.com>

>   tests/functional/riscv64/test_sifive_u.py | 1 -
>   1 file changed, 1 deletion(-)
> 
> diff --git a/tests/functional/riscv64/test_sifive_u.py b/tests/functional/riscv64/test_sifive_u.py
> index 358ff0d1f60..847f709da12 100755
> --- a/tests/functional/riscv64/test_sifive_u.py
> +++ b/tests/functional/riscv64/test_sifive_u.py
> @@ -13,7 +13,6 @@
>   import os
>   
>   from qemu_test import Asset, LinuxKernelTest
> -from qemu_test import skipIfMissingCommands
>   
>   
>   class SifiveU(LinuxKernelTest):



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

* Re: [PATCH] tests/functional/riscv64/test_sifive_u: Remove unused import statement
  2025-10-27 11:28 [PATCH] tests/functional/riscv64/test_sifive_u: Remove unused import statement Thomas Huth
  2025-10-27 12:01 ` Philippe Mathieu-Daudé
  2025-10-27 13:20 ` Daniel Henrique Barboza
@ 2025-10-28  4:05 ` Nutty.Liu
  2025-10-30  3:54 ` Alistair Francis
  2025-10-30  3:58 ` Alistair Francis
  4 siblings, 0 replies; 6+ messages in thread
From: Nutty.Liu @ 2025-10-28  4:05 UTC (permalink / raw)
  To: Thomas Huth, Palmer Dabbelt, Alistair Francis, Weiwei Li,
	Daniel Henrique Barboza, Liu Zhiwei, qemu-riscv, qemu-devel

On 10/27/2025 7:28 PM, Thomas Huth wrote:
> From: Thomas Huth <thuth@redhat.com>
>
> skipIfMissingCommands is not used here, remove the import to silence
> a pylint warning for this file.
>
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
>   tests/functional/riscv64/test_sifive_u.py | 1 -
>   1 file changed, 1 deletion(-)
Reviewed-by: Nutty Liu <nutty.liu@hotmail.com>

Thanks,
Nutty


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

* Re: [PATCH] tests/functional/riscv64/test_sifive_u: Remove unused import statement
  2025-10-27 11:28 [PATCH] tests/functional/riscv64/test_sifive_u: Remove unused import statement Thomas Huth
                   ` (2 preceding siblings ...)
  2025-10-28  4:05 ` Nutty.Liu
@ 2025-10-30  3:54 ` Alistair Francis
  2025-10-30  3:58 ` Alistair Francis
  4 siblings, 0 replies; 6+ messages in thread
From: Alistair Francis @ 2025-10-30  3:54 UTC (permalink / raw)
  To: Thomas Huth
  Cc: Palmer Dabbelt, Alistair Francis, Weiwei Li,
	Daniel Henrique Barboza, Liu Zhiwei, qemu-riscv, qemu-devel

On Mon, Oct 27, 2025 at 9:29 PM Thomas Huth <thuth@redhat.com> wrote:
>
> From: Thomas Huth <thuth@redhat.com>
>
> skipIfMissingCommands is not used here, remove the import to silence
> a pylint warning for this file.
>
> Signed-off-by: Thomas Huth <thuth@redhat.com>

Reviewed-by: Alistair Francis <alistair.francis@wdc.com>

Alistair

> ---
>  tests/functional/riscv64/test_sifive_u.py | 1 -
>  1 file changed, 1 deletion(-)
>
> diff --git a/tests/functional/riscv64/test_sifive_u.py b/tests/functional/riscv64/test_sifive_u.py
> index 358ff0d1f60..847f709da12 100755
> --- a/tests/functional/riscv64/test_sifive_u.py
> +++ b/tests/functional/riscv64/test_sifive_u.py
> @@ -13,7 +13,6 @@
>  import os
>
>  from qemu_test import Asset, LinuxKernelTest
> -from qemu_test import skipIfMissingCommands
>
>
>  class SifiveU(LinuxKernelTest):
> --
> 2.51.0
>
>


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

* Re: [PATCH] tests/functional/riscv64/test_sifive_u: Remove unused import statement
  2025-10-27 11:28 [PATCH] tests/functional/riscv64/test_sifive_u: Remove unused import statement Thomas Huth
                   ` (3 preceding siblings ...)
  2025-10-30  3:54 ` Alistair Francis
@ 2025-10-30  3:58 ` Alistair Francis
  4 siblings, 0 replies; 6+ messages in thread
From: Alistair Francis @ 2025-10-30  3:58 UTC (permalink / raw)
  To: Thomas Huth
  Cc: Palmer Dabbelt, Alistair Francis, Weiwei Li,
	Daniel Henrique Barboza, Liu Zhiwei, qemu-riscv, qemu-devel

On Mon, Oct 27, 2025 at 9:29 PM Thomas Huth <thuth@redhat.com> wrote:
>
> From: Thomas Huth <thuth@redhat.com>
>
> skipIfMissingCommands is not used here, remove the import to silence
> a pylint warning for this file.
>
> Signed-off-by: Thomas Huth <thuth@redhat.com>

Thanks!

Applied to riscv-to-apply.next

Alistair

> ---
>  tests/functional/riscv64/test_sifive_u.py | 1 -
>  1 file changed, 1 deletion(-)
>
> diff --git a/tests/functional/riscv64/test_sifive_u.py b/tests/functional/riscv64/test_sifive_u.py
> index 358ff0d1f60..847f709da12 100755
> --- a/tests/functional/riscv64/test_sifive_u.py
> +++ b/tests/functional/riscv64/test_sifive_u.py
> @@ -13,7 +13,6 @@
>  import os
>
>  from qemu_test import Asset, LinuxKernelTest
> -from qemu_test import skipIfMissingCommands
>
>
>  class SifiveU(LinuxKernelTest):
> --
> 2.51.0
>
>


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

end of thread, other threads:[~2025-10-30  3:58 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-27 11:28 [PATCH] tests/functional/riscv64/test_sifive_u: Remove unused import statement Thomas Huth
2025-10-27 12:01 ` Philippe Mathieu-Daudé
2025-10-27 13:20 ` Daniel Henrique Barboza
2025-10-28  4:05 ` Nutty.Liu
2025-10-30  3:54 ` Alistair Francis
2025-10-30  3:58 ` Alistair Francis

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