aboutsummaryrefslogtreecommitdiff
path: root/tests/acceptance
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2021-01-12 17:40:45 +0100
committerPhilippe Mathieu-Daudé <philmd@redhat.com>2021-02-08 12:41:03 +0100
commit299ab1b0cef9b7aacf3658ed9b6f16d4870c2778 (patch)
treea814f1908b30f290f69467f81bde18c43799a9fc /tests/acceptance
parent46c647e69d6525c63bc235d96b5956130dc3f04f (diff)
downloadqemu-299ab1b0cef9b7aacf3658ed9b6f16d4870c2778.zip
qemu-299ab1b0cef9b7aacf3658ed9b6f16d4870c2778.tar.gz
qemu-299ab1b0cef9b7aacf3658ed9b6f16d4870c2778.tar.bz2
tests/acceptance: Add a test for the virtex-ml507 ppc machine
The "And a hippo new year" image from the QEMU advent calendar 2020 can be used to test the virtex-ml507 ppc machine. Signed-off-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Wainer dos Santos Moschetta <wainersm@redhat.com> Reviewed-by: Willian Rampazzo <willianr@redhat.com> Acked-by: David Gibson <david@gibson.dropbear.id.au> Message-Id: <20210112164045.98565-4-thuth@redhat.com> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Diffstat (limited to 'tests/acceptance')
-rw-r--r--tests/acceptance/machine_ppc.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/acceptance/machine_ppc.py b/tests/acceptance/machine_ppc.py
index 71025d2..a836e24 100644
--- a/tests/acceptance/machine_ppc.py
+++ b/tests/acceptance/machine_ppc.py
@@ -49,3 +49,21 @@ class PpcMachine(Test):
self.vm.launch()
wait_for_console_pattern(self, 'QEMU advent calendar 2020',
self.panic_message)
+
+ def test_ppc_virtex_ml507(self):
+ """
+ :avocado: tags=arch:ppc
+ :avocado: tags=machine:virtex-ml507
+ """
+ tar_url = ('https://www.qemu-advent-calendar.org'
+ '/2020/download/hippo.tar.gz')
+ tar_hash = '306b95bfe7d147f125aa176a877e266db8ef914a'
+ file_path = self.fetch_asset(tar_url, asset_hash=tar_hash)
+ archive.extract(file_path, self.workdir)
+ self.vm.set_console()
+ self.vm.add_args('-kernel', self.workdir + '/hippo/hippo.linux',
+ '-dtb', self.workdir + '/hippo/virtex440-ml507.dtb',
+ '-m', '512')
+ self.vm.launch()
+ wait_for_console_pattern(self, 'QEMU advent calendar 2020',
+ self.panic_message)