diff mbox series

[v2,1/4] oeqa/selftest: don't skip test_read_only_image on qemuarm64

Message ID 20231010125458.167900-1-ross.burton@arm.com
State Accepted, archived
Commit 1b8b1cb74c8f5f387a14d86f03f37f68c07dd9aa
Headers show
Series [v2,1/4] oeqa/selftest: don't skip test_read_only_image on qemuarm64 | expand

Commit Message

Ross Burton Oct. 10, 2023, 12:54 p.m. UTC
From: Ross Burton <ross.burton@arm.com>

There's no need to skip this test anymore, as skipping on qemuarm64 was
a proxy for "uses SERIAL_CONSOLES_CHECK" which no longer exists.

[ YOCTO #14962 ]

Signed-off-by: Ross Burton <ross.burton@arm.com>
---
 meta/lib/oeqa/selftest/cases/buildoptions.py | 2 --
 1 file changed, 2 deletions(-)
diff mbox series

Patch

diff --git a/meta/lib/oeqa/selftest/cases/buildoptions.py b/meta/lib/oeqa/selftest/cases/buildoptions.py
index 01ea4dce395..104448442ad 100644
--- a/meta/lib/oeqa/selftest/cases/buildoptions.py
+++ b/meta/lib/oeqa/selftest/cases/buildoptions.py
@@ -50,8 +50,6 @@  class ImageOptionsTests(OESelftestTestCase):
             loglines = "".join(f.readlines())
         self.assertIn("ccache", loglines, msg="No match for ccache in %s log.do_compile. For further details: %s" % (recipe , log_compile))
 
-    # https://bugzilla.yoctoproject.org/show_bug.cgi?id=14962
-    @skipIfMachine("qemuarm64", "fails on qemuarm64 (uses SERIAL_CONSOLES_CHECK)")
     def test_read_only_image(self):
         distro_features = get_bb_var('DISTRO_FEATURES')
         if not ('x11' in distro_features and 'opengl' in distro_features):