qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] tests/functional: Fix the ppc64_hv and the ppc_40p test for read-only assets
@ 2024-11-05 16:09 Thomas Huth
  2024-11-08  2:19 ` Nicholas Piggin
  0 siblings, 1 reply; 2+ messages in thread
From: Thomas Huth @ 2024-11-05 16:09 UTC (permalink / raw)
  To: qemu-devel
  Cc: qemu-ppc, Nicholas Piggin, Daniel Henrique Barboza,
	Harsh Prateek Bora, Hervé Poussineau, Peter Maydell

Since commit 786bc2255256, cached asset files are read-only, so now we've
got to use "read-only=true" in tests that try to use these files directly.

Fixes: 786bc22552 ("tests/functional: make cached asset files read-only")
Signed-off-by: Thomas Huth <thuth@redhat.com>
---
 tests/functional/test_ppc64_hv.py | 3 ++-
 tests/functional/test_ppc_40p.py  | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/tests/functional/test_ppc64_hv.py b/tests/functional/test_ppc64_hv.py
index 1a6e4b6d07..312248bbfe 100755
--- a/tests/functional/test_ppc64_hv.py
+++ b/tests/functional/test_ppc64_hv.py
@@ -99,7 +99,8 @@ def do_start_alpine(self):
         self.vm.add_args("-kernel", self.vmlinuz)
         self.vm.add_args("-initrd", self.initramfs)
         self.vm.add_args("-smp", "4", "-m", "2g")
-        self.vm.add_args("-drive", f"file={self.iso_path},format=raw,if=none,id=drive0")
+        self.vm.add_args("-drive", f"file={self.iso_path},format=raw,if=none,"
+                                    "id=drive0,read-only=true")
 
         self.vm.launch()
         wait_for_console_pattern(self, 'Welcome to Alpine Linux 3.18')
diff --git a/tests/functional/test_ppc_40p.py b/tests/functional/test_ppc_40p.py
index c64e876c1f..67bcdae53a 100755
--- a/tests/functional/test_ppc_40p.py
+++ b/tests/functional/test_ppc_40p.py
@@ -46,7 +46,8 @@ def test_factory_firmware_and_netbsd(self):
 
         self.vm.set_console()
         self.vm.add_args('-bios', bios_path,
-                         '-fda', drive_path)
+                         '-drive',
+                         f"file={drive_path},format=raw,if=floppy,read-only=true")
         self.vm.launch()
         os_banner = 'NetBSD 4.0 (GENERIC) #0: Sun Dec 16 00:49:40 PST 2007'
         wait_for_console_pattern(self, os_banner)
-- 
2.47.0



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

* Re: [PATCH] tests/functional: Fix the ppc64_hv and the ppc_40p test for read-only assets
  2024-11-05 16:09 [PATCH] tests/functional: Fix the ppc64_hv and the ppc_40p test for read-only assets Thomas Huth
@ 2024-11-08  2:19 ` Nicholas Piggin
  0 siblings, 0 replies; 2+ messages in thread
From: Nicholas Piggin @ 2024-11-08  2:19 UTC (permalink / raw)
  To: Thomas Huth, qemu-devel
  Cc: qemu-ppc, Daniel Henrique Barboza, Harsh Prateek Bora,
	Hervé Poussineau, Peter Maydell

On Wed Nov 6, 2024 at 2:09 AM AEST, Thomas Huth wrote:
> Since commit 786bc2255256, cached asset files are read-only, so now we've
> got to use "read-only=true" in tests that try to use these files directly.
>
> Fixes: 786bc22552 ("tests/functional: make cached asset files read-only")
> Signed-off-by: Thomas Huth <thuth@redhat.com>

LGTM

Reviewed-by: Nicholas Piggin <npiggin@gmail.com>

> ---
>  tests/functional/test_ppc64_hv.py | 3 ++-
>  tests/functional/test_ppc_40p.py  | 3 ++-
>  2 files changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/tests/functional/test_ppc64_hv.py b/tests/functional/test_ppc64_hv.py
> index 1a6e4b6d07..312248bbfe 100755
> --- a/tests/functional/test_ppc64_hv.py
> +++ b/tests/functional/test_ppc64_hv.py
> @@ -99,7 +99,8 @@ def do_start_alpine(self):
>          self.vm.add_args("-kernel", self.vmlinuz)
>          self.vm.add_args("-initrd", self.initramfs)
>          self.vm.add_args("-smp", "4", "-m", "2g")
> -        self.vm.add_args("-drive", f"file={self.iso_path},format=raw,if=none,id=drive0")
> +        self.vm.add_args("-drive", f"file={self.iso_path},format=raw,if=none,"
> +                                    "id=drive0,read-only=true")
>  
>          self.vm.launch()
>          wait_for_console_pattern(self, 'Welcome to Alpine Linux 3.18')
> diff --git a/tests/functional/test_ppc_40p.py b/tests/functional/test_ppc_40p.py
> index c64e876c1f..67bcdae53a 100755
> --- a/tests/functional/test_ppc_40p.py
> +++ b/tests/functional/test_ppc_40p.py
> @@ -46,7 +46,8 @@ def test_factory_firmware_and_netbsd(self):
>  
>          self.vm.set_console()
>          self.vm.add_args('-bios', bios_path,
> -                         '-fda', drive_path)
> +                         '-drive',
> +                         f"file={drive_path},format=raw,if=floppy,read-only=true")
>          self.vm.launch()
>          os_banner = 'NetBSD 4.0 (GENERIC) #0: Sun Dec 16 00:49:40 PST 2007'
>          wait_for_console_pattern(self, os_banner)



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

end of thread, other threads:[~2024-11-08  2:20 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-05 16:09 [PATCH] tests/functional: Fix the ppc64_hv and the ppc_40p test for read-only assets Thomas Huth
2024-11-08  2:19 ` Nicholas Piggin

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