]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
oeqa/runtime/parselogs: remove obsolete LSB testing support
authorRoss Burton <ross.burton@arm.com>
Thu, 21 Sep 2023 13:48:28 +0000 (14:48 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 22 Sep 2023 06:43:51 +0000 (07:43 +0100)
The LSB compliance tests were removed in 2019[1], so this is obsolete.

[1] oe-core fb064356

Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/lib/oeqa/runtime/cases/parselogs.py

index e62ab2c44ece4d40aa7a1d641a3ca11d1918367d..e670df3cedde1c11d3de847d55d82a567a0366ed 100644 (file)
@@ -69,9 +69,6 @@ common_errors = [
     "Failed to read LoaderEntryOneShot variable, ignoring: Operation not supported",
     ]
 
-video_related = [
-]
-
 x86_common = [
     '[drm:psb_do_init] *ERROR* Debug is',
     'wrong ELF class',
@@ -225,11 +222,6 @@ class ParseLogsTest(OERuntimeTestCase):
         cls.ignore_errors = ignore_errors
         cls.log_locations = log_locations
         cls.msg = ''
-        is_lsb, _ = cls.tc.target.run("which LSB_Test.sh")
-        if is_lsb == 0:
-            for machine in cls.ignore_errors:
-                cls.ignore_errors[machine] = cls.ignore_errors[machine] \
-                                             + video_related
 
     def getMachine(self):
         return self.td.get('MACHINE', '')