All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] tests/acceptance: Add tests for the ppc405 boards
@ 2021-10-11 12:59 Thomas Huth
  2021-10-11 13:22 ` Philippe Mathieu-Daudé
  0 siblings, 1 reply; 3+ messages in thread
From: Thomas Huth @ 2021-10-11 12:59 UTC (permalink / raw)
  To: qemu-devel
  Cc: Greg Kurz, Wainer dos Santos Moschetta, Willian Rampazzo,
	qemu-ppc, Cleber Rosa, Philippe Mathieu-Daudé,
	David Gibson

Using the U-Boot firmware, we can check that at least the serial console
of the ppc405 boards is still usable.

Signed-off-by: Thomas Huth <thuth@redhat.com>
---
 Based-on: 20211006071140.565952-1-thuth@redhat.com

 tests/acceptance/ppc_405.py | 40 +++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)
 create mode 100644 tests/acceptance/ppc_405.py

diff --git a/tests/acceptance/ppc_405.py b/tests/acceptance/ppc_405.py
new file mode 100644
index 0000000000..bf7c2f22fc
--- /dev/null
+++ b/tests/acceptance/ppc_405.py
@@ -0,0 +1,40 @@
+# Test that the U-Boot firmware boots on ppc 405 machines and check the console
+#
+# Copyright (c) 2021 Red Hat, Inc.
+#
+# This work is licensed under the terms of the GNU GPL, version 2 or
+# later.  See the COPYING file in the top-level directory.
+
+from avocado.utils import archive
+from avocado_qemu import Test
+from avocado_qemu import wait_for_console_pattern
+from avocado_qemu import exec_command_and_wait_for_pattern
+
+class Ppc405Machine(Test):
+
+    timeout = 90
+
+    def do_test_ppc405(self):
+        uboot_url = ('https://gitlab.com/huth/u-boot/-/raw/'
+                     'taihu-2021-10-09/u-boot-taihu.bin')
+        uboot_hash = ('3208940e908a5edc7c03eab072c60f0dcfadc2ab');
+        file_path = self.fetch_asset(uboot_url, asset_hash=uboot_hash)
+        self.vm.set_console(console_index=1)
+        self.vm.add_args('-bios', file_path)
+        self.vm.launch()
+        wait_for_console_pattern(self, 'AMCC PPC405EP Evaluation Board')
+        exec_command_and_wait_for_pattern(self, 'reset', 'AMCC PowerPC 405EP')
+
+    def test_ppc_taihu(self):
+        """
+        :avocado: tags=arch:ppc
+        :avocado: tags=machine:taihu
+        """
+        self.do_test_ppc405()
+
+    def test_ppc_ref405ep(self):
+        """
+        :avocado: tags=arch:ppc
+        :avocado: tags=machine:ref405ep
+        """
+        self.do_test_ppc405()
-- 
2.27.0



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

* Re: [PATCH] tests/acceptance: Add tests for the ppc405 boards
  2021-10-11 12:59 [PATCH] tests/acceptance: Add tests for the ppc405 boards Thomas Huth
@ 2021-10-11 13:22 ` Philippe Mathieu-Daudé
  2021-10-13  6:20   ` David Gibson
  0 siblings, 1 reply; 3+ messages in thread
From: Philippe Mathieu-Daudé @ 2021-10-11 13:22 UTC (permalink / raw)
  To: Thomas Huth, qemu-devel
  Cc: Greg Kurz, Wainer dos Santos Moschetta, Willian Rampazzo,
	qemu-ppc, Cleber Rosa, David Gibson

On 10/11/21 14:59, Thomas Huth wrote:
> Using the U-Boot firmware, we can check that at least the serial console
> of the ppc405 boards is still usable.
> 
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
>  Based-on: 20211006071140.565952-1-thuth@redhat.com
> 
>  tests/acceptance/ppc_405.py | 40 +++++++++++++++++++++++++++++++++++++
>  1 file changed, 40 insertions(+)
>  create mode 100644 tests/acceptance/ppc_405.py

> +    def test_ppc_taihu(self):
> +        """
> +        :avocado: tags=arch:ppc
> +        :avocado: tags=machine:taihu

Please consider adding:

  tags=cpu:405ep

> +        """
> +        self.do_test_ppc405()
> +
> +    def test_ppc_ref405ep(self):
> +        """
> +        :avocado: tags=arch:ppc
> +        :avocado: tags=machine:ref405ep
> +        """
> +        self.do_test_ppc405()
> 

Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>



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

* Re: [PATCH] tests/acceptance: Add tests for the ppc405 boards
  2021-10-11 13:22 ` Philippe Mathieu-Daudé
@ 2021-10-13  6:20   ` David Gibson
  0 siblings, 0 replies; 3+ messages in thread
From: David Gibson @ 2021-10-13  6:20 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé
  Cc: Thomas Huth, qemu-devel, Wainer dos Santos Moschetta,
	Willian Rampazzo, Greg Kurz, qemu-ppc, Cleber Rosa

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

On Mon, Oct 11, 2021 at 03:22:17PM +0200, Philippe Mathieu-Daudé wrote:
> On 10/11/21 14:59, Thomas Huth wrote:
> > Using the U-Boot firmware, we can check that at least the serial console
> > of the ppc405 boards is still usable.
> > 
> > Signed-off-by: Thomas Huth <thuth@redhat.com>
> > ---
> >  Based-on: 20211006071140.565952-1-thuth@redhat.com
> > 
> >  tests/acceptance/ppc_405.py | 40 +++++++++++++++++++++++++++++++++++++
> >  1 file changed, 40 insertions(+)
> >  create mode 100644 tests/acceptance/ppc_405.py
> 
> > +    def test_ppc_taihu(self):
> > +        """
> > +        :avocado: tags=arch:ppc
> > +        :avocado: tags=machine:taihu
> 
> Please consider adding:
> 
>   tags=cpu:405ep

I've merged this, adding this tag as suggested.

> 
> > +        """
> > +        self.do_test_ppc405()
> > +
> > +    def test_ppc_ref405ep(self):
> > +        """
> > +        :avocado: tags=arch:ppc
> > +        :avocado: tags=machine:ref405ep
> > +        """
> > +        self.do_test_ppc405()
> > 
> 
> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
> Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
> 

-- 
David Gibson			| I'll have my music baroque, and my code
david AT gibson.dropbear.id.au	| minimalist, thank you.  NOT _the_ _other_
				| _way_ _around_!
http://www.ozlabs.org/~dgibson

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

end of thread, other threads:[~2021-10-13  6:31 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-11 12:59 [PATCH] tests/acceptance: Add tests for the ppc405 boards Thomas Huth
2021-10-11 13:22 ` Philippe Mathieu-Daudé
2021-10-13  6:20   ` David Gibson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.