summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@arm.com>2023-10-10 13:54:55 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-10-11 09:43:45 +0100
commit947f7d7b8c0d961a4a916d8f03fa449c77b185a6 (patch)
treee8240a81dbdc600ddaee516631c0287311066f3f
parent3c531686820ca9baeb6394cf75df8d27b5d8a731 (diff)
downloadpoky-947f7d7b8c0d961a4a916d8f03fa449c77b185a6.tar.gz
oeqa/selftest: don't skip test_read_only_image on qemuarm64
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 ] (From OE-Core rev: 1b8b1cb74c8f5f387a14d86f03f37f68c07dd9aa) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/lib/oeqa/selftest/cases/buildoptions.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/meta/lib/oeqa/selftest/cases/buildoptions.py b/meta/lib/oeqa/selftest/cases/buildoptions.py
index 01ea4dce39..104448442a 100644
--- a/meta/lib/oeqa/selftest/cases/buildoptions.py
+++ b/meta/lib/oeqa/selftest/cases/buildoptions.py
@@ -50,8 +50,6 @@ class ImageOptionsTests(OESelftestTestCase):
50 loglines = "".join(f.readlines()) 50 loglines = "".join(f.readlines())
51 self.assertIn("ccache", loglines, msg="No match for ccache in %s log.do_compile. For further details: %s" % (recipe , log_compile)) 51 self.assertIn("ccache", loglines, msg="No match for ccache in %s log.do_compile. For further details: %s" % (recipe , log_compile))
52 52
53 # https://bugzilla.yoctoproject.org/show_bug.cgi?id=14962
54 @skipIfMachine("qemuarm64", "fails on qemuarm64 (uses SERIAL_CONSOLES_CHECK)")
55 def test_read_only_image(self): 53 def test_read_only_image(self):
56 distro_features = get_bb_var('DISTRO_FEATURES') 54 distro_features = get_bb_var('DISTRO_FEATURES')
57 if not ('x11' in distro_features and 'opengl' in distro_features): 55 if not ('x11' in distro_features and 'opengl' in distro_features):