diff mbox series

oeqa selftest uboot.py: remove SMCCC KVM check

Message ID 20250606082601.1288383-1-mikko.rapeli@linaro.org
State New
Headers show
Series oeqa selftest uboot.py: remove SMCCC KVM check | expand

Commit Message

Mikko Rapeli June 6, 2025, 8:26 a.m. UTC
u-boot test to boot with qemu and KVM on aarch64
used SMCCC related kernel message to detect if
kernel runs under KVM. This message is sadly
not reliable and may be missing from some qemu
machine boots.

Failing test run:

https://autobuilder.yoctoproject.org/valkyrie/api/v2/logs/2606133/raw_inline

Disable the SMCC KVM check for now.

Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org>
---
 meta/lib/oeqa/selftest/cases/uboot.py | 2 --
 1 file changed, 2 deletions(-)
diff mbox series

Patch

diff --git a/meta/lib/oeqa/selftest/cases/uboot.py b/meta/lib/oeqa/selftest/cases/uboot.py
index e9e95d9e6056..3d328ad17978 100644
--- a/meta/lib/oeqa/selftest/cases/uboot.py
+++ b/meta/lib/oeqa/selftest/cases/uboot.py
@@ -95,5 +95,3 @@  QB_DRIVE_TYPE = "/dev/vd"
             self.assertEqual(status, 1, msg=output)
             # Machine is qemu
             self.assertTrue("Machine model: linux,dummy-virt" in output, msg=output)
-            # with KVM enabled
-            self.assertTrue("KVM: hypervisor services detected" in output, msg=output)