All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Philippe Mathieu-Daudé" <f4bug@amsat.org>
To: qemu-devel@nongnu.org
Cc: "Fam Zheng" <fam@euphon.net>, "Thomas Huth" <thuth@redhat.com>,
	"Magnus Damm" <magnus.damm@gmail.com>,
	"Yoshinori Sato" <ysato@users.sourceforge.jp>,
	qemu-trivial@nongnu.org, "Michael Tokarev" <mjt@tls.msk.ru>,
	"Richard Henderson" <richard.henderson@linaro.org>,
	"Laurent Vivier" <laurent@vivier.eu>,
	"Markus Armbruster" <armbru@redhat.com>,
	"Alex Bennée" <alex.bennee@linaro.org>,
	"Aurelien Jarno" <aurelien@aurel32.net>,
	"Philippe Mathieu-Daudé" <philmd@redhat.com>,
	"Aleksandar Markovic" <aleksandar.m.mail@gmail.com>,
	"Philippe Mathieu-Daudé" <f4bug@amsat.org>
Subject: [PATCH v2 7/8] tests/acceptance: Add boot tests for sh4 QEMU advent calendar image
Date: Mon,  8 Jun 2020 11:01:41 +0200	[thread overview]
Message-ID: <20200608090142.6793-8-f4bug@amsat.org> (raw)
In-Reply-To: <20200608090142.6793-1-f4bug@amsat.org>

From: Thomas Huth <thuth@redhat.com>

Now that we can select the second serial console in the acceptance tests
(see commit 746f244d9720 "Allow to use other serial consoles than default"),
we can also test the sh4 image from the QEMU advent calendar 2018.

Signed-off-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Tested-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20200515164337.4899-1-thuth@redhat.com>
[PMD: Split .travis.yml change in separate patch]
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
 tests/acceptance/boot_linux_console.py | 13 +++++++++++--
 1 file changed, 11 insertions(+), 2 deletions(-)

diff --git a/tests/acceptance/boot_linux_console.py b/tests/acceptance/boot_linux_console.py
index 12725d4529..d4fb2bce82 100644
--- a/tests/acceptance/boot_linux_console.py
+++ b/tests/acceptance/boot_linux_console.py
@@ -827,12 +827,12 @@ def test_m68k_q800(self):
         console_pattern = 'No filesystem could mount root'
         self.wait_for_console_pattern(console_pattern)
 
-    def do_test_advcal_2018(self, day, tar_hash, kernel_name):
+    def do_test_advcal_2018(self, day, tar_hash, kernel_name, console=0):
         tar_url = ('https://www.qemu-advent-calendar.org'
                    '/2018/download/day' + day + '.tar.xz')
         file_path = self.fetch_asset(tar_url, asset_hash=tar_hash)
         archive.extract(file_path, self.workdir)
-        self.vm.set_console()
+        self.vm.set_console(console_index=console)
         self.vm.add_args('-kernel',
                          self.workdir + '/day' + day + '/' + kernel_name)
         self.vm.launch()
@@ -906,6 +906,15 @@ def test_ppc_mac99(self):
         self.vm.add_args('-M', 'graphics=off')
         self.do_test_advcal_2018('15', tar_hash, 'invaders.elf')
 
+    def test_sh4_r2d(self):
+        """
+        :avocado: tags=arch:sh4
+        :avocado: tags=machine:r2d
+        """
+        tar_hash = 'fe06a4fd8ccbf2e27928d64472939d47829d4c7e'
+        self.vm.add_args('-append', 'console=ttySC1')
+        self.do_test_advcal_2018('09', tar_hash, 'zImage', console=1)
+
     def test_sparc_ss20(self):
         """
         :avocado: tags=arch:sparc
-- 
2.21.3



  parent reply	other threads:[~2020-06-08  9:06 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-06-08  9:01 [PATCH v2 0/8] sh4: Mark it orphan in MAINTAINERS & trivial fixes Philippe Mathieu-Daudé
2020-06-08  9:01 ` [PATCH v2 1/8] MAINTAINERS: Mark SH4 hardware orphan Philippe Mathieu-Daudé
2020-06-10 11:08   ` Aleksandar Markovic
2020-06-10 11:16     ` Thomas Huth
2020-06-10 11:26       ` Aleksandar Markovic
2020-06-10 12:06     ` Philippe Mathieu-Daudé
2020-06-10 12:22       ` Aleksandar Markovic
2020-06-10 20:56     ` Philippe Mathieu-Daudé
2020-06-08  9:01 ` [PATCH v2 2/8] MAINTAINERS: Mark SH4 based R2D & Shix machines orphan Philippe Mathieu-Daudé
2020-06-08  9:48   ` Thomas Huth
2020-06-09  8:41     ` Markus Armbruster
2020-06-09  8:59       ` Magnus Damm
2020-06-09  9:12         ` Philippe Mathieu-Daudé
2020-06-10  9:56           ` Yoshinori Sato
2020-06-10 11:54   ` Aleksandar Markovic
2020-06-08  9:01 ` [PATCH v2 3/8] MAINTAINERS: Mark SH4 TCG target orphan Philippe Mathieu-Daudé
2020-06-09  6:35   ` Aurelien Jarno
2020-06-08  9:01 ` [PATCH v2 4/8] hw/sh4: Use MemoryRegion typedef Philippe Mathieu-Daudé
2020-06-08 10:24   ` Thomas Huth
2020-06-08  9:01 ` [PATCH v2 5/8] hw/sh4: Extract timer definitions to 'hw/timer/tmu012.h' Philippe Mathieu-Daudé
2020-06-08  9:01 ` [PATCH v2 6/8] hw/timer/sh_timer: Remove unused 'qemu/timer.h' include Philippe Mathieu-Daudé
2020-06-08  9:01 ` Philippe Mathieu-Daudé [this message]
2020-06-08  9:01 ` [PATCH v2 8/8] .travis.yml: Test SH4 QEMU advent calendar image Philippe Mathieu-Daudé

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200608090142.6793-8-f4bug@amsat.org \
    --to=f4bug@amsat.org \
    --cc=aleksandar.m.mail@gmail.com \
    --cc=alex.bennee@linaro.org \
    --cc=armbru@redhat.com \
    --cc=aurelien@aurel32.net \
    --cc=fam@euphon.net \
    --cc=laurent@vivier.eu \
    --cc=magnus.damm@gmail.com \
    --cc=mjt@tls.msk.ru \
    --cc=philmd@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-trivial@nongnu.org \
    --cc=richard.henderson@linaro.org \
    --cc=thuth@redhat.com \
    --cc=ysato@users.sourceforge.jp \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.