summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@arm.com>2023-09-21 14:48:28 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-09-22 07:45:17 +0100
commit1ef74b08ca5696401a7165143e5abaaec442d767 (patch)
tree58fb36798b262865aec5a340df23be925774fdff /meta/lib/oeqa/runtime
parentb6d19e347d145eba086d684618d78efda578296e (diff)
downloadpoky-1ef74b08ca5696401a7165143e5abaaec442d767.tar.gz
oeqa/runtime/parselogs: remove obsolete LSB testing support
The LSB compliance tests were removed in 2019[1], so this is obsolete. [1] oe-core fb064356 (From OE-Core rev: a465b61bc3a16152f90032d5d5a041f87bf30108) Signed-off-by: Ross Burton <ross.burton@arm.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/parselogs.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/meta/lib/oeqa/runtime/cases/parselogs.py b/meta/lib/oeqa/runtime/cases/parselogs.py
index e62ab2c44e..e670df3ced 100644
--- a/meta/lib/oeqa/runtime/cases/parselogs.py
+++ b/meta/lib/oeqa/runtime/cases/parselogs.py
@@ -69,9 +69,6 @@ common_errors = [
69 "Failed to read LoaderEntryOneShot variable, ignoring: Operation not supported", 69 "Failed to read LoaderEntryOneShot variable, ignoring: Operation not supported",
70 ] 70 ]
71 71
72video_related = [
73]
74
75x86_common = [ 72x86_common = [
76 '[drm:psb_do_init] *ERROR* Debug is', 73 '[drm:psb_do_init] *ERROR* Debug is',
77 'wrong ELF class', 74 'wrong ELF class',
@@ -225,11 +222,6 @@ class ParseLogsTest(OERuntimeTestCase):
225 cls.ignore_errors = ignore_errors 222 cls.ignore_errors = ignore_errors
226 cls.log_locations = log_locations 223 cls.log_locations = log_locations
227 cls.msg = '' 224 cls.msg = ''
228 is_lsb, _ = cls.tc.target.run("which LSB_Test.sh")
229 if is_lsb == 0:
230 for machine in cls.ignore_errors:
231 cls.ignore_errors[machine] = cls.ignore_errors[machine] \
232 + video_related
233 225
234 def getMachine(self): 226 def getMachine(self):
235 return self.td.get('MACHINE', '') 227 return self.td.get('MACHINE', '')