summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime
diff options
context:
space:
mode:
authorEilís 'pidge' Ní Fhlannagáin <pidge@baylibre.com>2024-03-06 15:50:43 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-03-07 17:27:51 +0000
commit59c7b5e70628560f0b21ac7d44423976c5fa5050 (patch)
treef0c0f48deafc6ba764f84a463da9f008277cde05 /meta/lib/oeqa/runtime
parent96af410e8e34c31dd8feb200510038bfc3a83ed9 (diff)
downloadpoky-59c7b5e70628560f0b21ac7d44423976c5fa5050.tar.gz
oeqa/runtime/login: Exclude qemuriscv64
Excluding riscv64 due to mouse rather than a touchscreen which adds a moving cursor, so the diff ends up > 0. Need to fix the image to use the touchscreen rather than mouse input. (From OE-Core rev: 7f7032c7613abd62ce510c98211c75fc7c5e7090) Signed-off-by: Eilís 'pidge' Ní Fhlannagáin <pidge@baylibre.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/runtime')
-rw-r--r--meta/lib/oeqa/runtime/cases/login.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/runtime/cases/login.py b/meta/lib/oeqa/runtime/cases/login.py
index ac8a0454f3..edbc48ac20 100644
--- a/meta/lib/oeqa/runtime/cases/login.py
+++ b/meta/lib/oeqa/runtime/cases/login.py
@@ -28,7 +28,7 @@ from oeqa.runtime.decorator.package import OEHasPackage
28class LoginTest(OERuntimeTestCase): 28class LoginTest(OERuntimeTestCase):
29 @OEHasPackage(['matchbox-desktop']) 29 @OEHasPackage(['matchbox-desktop'])
30 def test_screenshot(self): 30 def test_screenshot(self):
31 if self.td.get('MACHINE') in ("qemuppc64", "qemuarmv5", "qemuriscv32", "qemuloongarch64"): 31 if self.td.get('MACHINE') in ("qemuppc64", "qemuarmv5", "qemuriscv32", "qemuriscv64", "qemuloongarch64"):
32 self.skipTest("{0} is not currently supported.".format(self.td.get('MACHINE'))) 32 self.skipTest("{0} is not currently supported.".format(self.td.get('MACHINE')))
33 33
34 pn = self.td.get('PN') 34 pn = self.td.get('PN')