[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 6/8] tests/avocado: Add pseries KVM boot_linux test
From: |
Nicholas Piggin |
Subject: |
[PATCH v2 6/8] tests/avocado: Add pseries KVM boot_linux test |
Date: |
Thu, 18 Jan 2024 00:12:21 +1000 |
ppc has no avocado tests for the KVM backend. Add a KVM boot_linux.py
test for pseries.
Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
---
tests/avocado/boot_linux.py | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/tests/avocado/boot_linux.py b/tests/avocado/boot_linux.py
index 7c9cf6ae15..4c9b15ba06 100644
--- a/tests/avocado/boot_linux.py
+++ b/tests/avocado/boot_linux.py
@@ -102,6 +102,14 @@ def test_pseries_tcg(self):
self.vm.add_args("-accel", "tcg")
self.launch_and_wait(set_up_ssh_connection=False)
+ def test_pseries_kvm(self):
+ """
+ :avocado: tags=machine:pseries
+ :avocado: tags=accel:kvm
+ """
+ self.require_accelerator("kvm")
+ self.vm.add_args("-accel", "kvm")
+ self.launch_and_wait(set_up_ssh_connection=False)
class BootLinuxS390X(LinuxTest):
"""
--
2.42.0
- [PATCH v2 0/8] tests/avocado: ppc additions and other fixes, Nicholas Piggin, 2024/01/17
- [PATCH v2 1/8] tests/avocado: mark boot_linux.py long runtime instead of flaky, Nicholas Piggin, 2024/01/17
- [PATCH v2 2/8] tests/avocado: Mark x86-64 boot_linux.py TCG tests as long runtime, Nicholas Piggin, 2024/01/17
- [PATCH v2 3/8] tests/avocado: Enable replay_linux.py on ppc64 pseries, Nicholas Piggin, 2024/01/17
- [PATCH v2 4/8] tests/avocado: ppc add powernv10 boot_linux_console test, Nicholas Piggin, 2024/01/17
- [PATCH v2 5/8] tests/avocado: Add ppc pseries and powernv hash MMU tests, Nicholas Piggin, 2024/01/17
- [PATCH v2 6/8] tests/avocado: Add pseries KVM boot_linux test,
Nicholas Piggin <=
- [PATCH v2 7/8] tests/avocado: ppc add hypervisor tests, Nicholas Piggin, 2024/01/17
- [PATCH v2 8/8] tests/avocado: Add FreeBSD distro boot tests for ppc, Nicholas Piggin, 2024/01/17