]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
oeqa/runtime/login: Exclude qemuriscv64
authorEilís 'pidge' Ní Fhlannagáin <pidge@baylibre.com>
Wed, 6 Mar 2024 15:50:43 +0000 (15:50 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 7 Mar 2024 12:12:58 +0000 (12:12 +0000)
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.

Signed-off-by: Eilís 'pidge' Ní Fhlannagáin <pidge@baylibre.com>
meta/lib/oeqa/runtime/cases/login.py

index ac8a0454f384b45638095eb951de9b5c70d747a9..edbc48ac2053e8ba0f52691fc1d50367afd7dcb8 100644 (file)
@@ -28,7 +28,7 @@ from oeqa.runtime.decorator.package import OEHasPackage
 class LoginTest(OERuntimeTestCase):
     @OEHasPackage(['matchbox-desktop'])
     def test_screenshot(self):
-        if self.td.get('MACHINE') in ("qemuppc64", "qemuarmv5", "qemuriscv32", "qemuloongarch64"):
+        if self.td.get('MACHINE') in ("qemuppc64", "qemuarmv5", "qemuriscv32", "qemuriscv64", "qemuloongarch64"):
             self.skipTest("{0} is not currently supported.".format(self.td.get('MACHINE')))
 
         pn = self.td.get('PN')