summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/cases/multilib.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2019-05-08 16:56:32 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-05-09 16:31:55 +0100
commitc7592b01478def091b6787412390c61e7ce0a0cd (patch)
tree3c2f26480c6e16fae0ad65b032e3dc0fccfca71b /meta/lib/oeqa/runtime/cases/multilib.py
parentc0dc72bad92e2e4dc0aedb48b969709f821baf73 (diff)
downloadpoky-c7592b01478def091b6787412390c61e7ce0a0cd.tar.gz
oeqa: Drop OETestID
These IDs refer to testopia which we're no longer using. We would now use the test names to definitively reference tests and the IDs can be dropped, along with their supporting code. (From OE-Core rev: 8e2d0575e4e7036b5f60e632f377a8ab2b96ead8) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/runtime/cases/multilib.py')
-rw-r--r--meta/lib/oeqa/runtime/cases/multilib.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/meta/lib/oeqa/runtime/cases/multilib.py b/meta/lib/oeqa/runtime/cases/multilib.py
index 89020386b1..2cf87618f9 100644
--- a/meta/lib/oeqa/runtime/cases/multilib.py
+++ b/meta/lib/oeqa/runtime/cases/multilib.py
@@ -1,6 +1,5 @@
1from oeqa.runtime.case import OERuntimeTestCase 1from oeqa.runtime.case import OERuntimeTestCase
2from oeqa.core.decorator.depends import OETestDepends 2from oeqa.core.decorator.depends import OETestDepends
3from oeqa.core.decorator.oeid import OETestID
4from oeqa.core.decorator.data import skipIfNotInDataVar 3from oeqa.core.decorator.data import skipIfNotInDataVar
5from oeqa.runtime.decorator.package import OEHasPackage 4from oeqa.runtime.decorator.package import OEHasPackage
6 5
@@ -23,7 +22,6 @@ class MultilibTest(OERuntimeTestCase):
23 msg = "%s isn't %s (is %s)" % (binary, arch, theclass) 22 msg = "%s isn't %s (is %s)" % (binary, arch, theclass)
24 self.assertEqual(theclass, arch, msg=msg) 23 self.assertEqual(theclass, arch, msg=msg)
25 24
26 @OETestID(1593)
27 @skipIfNotInDataVar('MULTILIBS', 'multilib:lib32', 25 @skipIfNotInDataVar('MULTILIBS', 'multilib:lib32',
28 "This isn't a multilib:lib32 image") 26 "This isn't a multilib:lib32 image")
29 @OETestDepends(['ssh.SSHTest.test_ssh']) 27 @OETestDepends(['ssh.SSHTest.test_ssh'])
@@ -36,7 +34,6 @@ class MultilibTest(OERuntimeTestCase):
36 self.archtest("/lib/libc.so.6", "ELF32") 34 self.archtest("/lib/libc.so.6", "ELF32")
37 self.archtest("/lib64/libc.so.6", "ELF64") 35 self.archtest("/lib64/libc.so.6", "ELF64")
38 36
39 @OETestID(279)
40 @OETestDepends(['multilib.MultilibTest.test_check_multilib_libc']) 37 @OETestDepends(['multilib.MultilibTest.test_check_multilib_libc'])
41 @OEHasPackage(['lib32-connman', '!connman']) 38 @OEHasPackage(['lib32-connman', '!connman'])
42 def test_file_connman(self): 39 def test_file_connman(self):