On 24/7/25 13:02, Alex Bennée wrote:
Philippe Mathieu-Daudé <phi...@linaro.org> writes:
From: Alex Bennée <alex.ben...@linaro.org>
This is a simple test case that runs an image with kvmtool and
kvm-unit-tests which can validate virtualisation works. This is useful
for exercising TCG but can also be applied to any nested virt setup
which is why it doesn't specify an accelerator.
You might want to update this text give now...
<snip>
+
+ def do_test(self, kvm_mode='nvhe', accel='tcg'):
+ self.require_accelerator(accel)
You are now forcing tcg. Or are you planning on adding additional tests
bellow to exercise split and KVM (when we have nested support for
HVF/KVM)?
I don't know about KVM. For HVF/split I'm using:
-- >8 --
commit a4c49f63b31da7fb16d29656479d1942efebba2a
Author: Philippe Mathieu-Daudé <phi...@linaro.org>
Date: Wed Jul 23 17:41:36 2025 +0200
tests/functional/test_aarch64_kvm: Test split accelerator
Signed-off-by: Philippe Mathieu-Daudé <phi...@linaro.org>
diff --git a/tests/functional/test_aarch64_kvm.py
b/tests/functional/test_aarch64_kvm.py
index add89c58c5e..f1e0a4382bd 100755
--- a/tests/functional/test_aarch64_kvm.py
+++ b/tests/functional/test_aarch64_kvm.py
@@ -36 +36 @@ class Aarch64VirtKVMTests(LinuxKernelTest):
- def _launch_guest(self, kvm_mode):
+ def _launch_guest(self, kvm_mode, accel='tcg'):
@@ -45,2 +45,2 @@ def _launch_guest(self, kvm_mode):
- self.vm.add_args('-accel', 'tcg')
- self.vm.add_args('-cpu', 'cortex-a72')
+ self.vm.add_args('-accel', accel)
+ self.vm.add_args('-cpu', 'cortex-a72' if accel == 'tcg' else
'host')
@@ -66 +66,2 @@ def _run_kut(self, kvm_mode):
- ec_and_wait(self, f'{self.KUT_BASE}/selftest-smp', self.OK_CMD)
+ if kvm_mode == 'nvhe':
+ ec_and_wait(self, f'{self.KUT_BASE}/selftest-smp', self.OK_CMD)
@@ -70 +71 @@ def do_test(self, kvm_mode='nvhe', accel='tcg'):
- self._launch_guest(kvm_mode)
+ self._launch_guest(kvm_mode, accel)
@@ -74 +75 @@ def test_aarch64_vhe_selftest_tcg(self):
- self.do_test('vhe')
+ self.do_test('vhe', 'tcg')
@@ -77 +78,7 @@ def test_aarch64_nvhe_selftest_tcg(self):
- self.do_test('nvhe')
+ self.do_test('nvhe', 'tcg')
+
+ def test_aarch64_vhe_selftest_split(self):
+ self.do_test('vhe', 'split')
+
+ def test_aarch64_nvhe_selftest_split(self):
+ self.do_test('nvhe', 'split')
---