diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2020-08-27 12:59:33 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-08-28 07:08:37 +0100 |
commit | 635f67efaa62fe2109444b34f6ee389ecb88058e (patch) | |
tree | ef811d523be693b62b3f4f45a2bb0019637cf6aa /meta | |
parent | b0bee2b736f03294bc97c13f9c9c92782458114a (diff) | |
download | poky-635f67efaa62fe2109444b34f6ee389ecb88058e.tar.gz |
oeqa/multilib: un-skip the connman test
It was previously skipped as it was expecting plain connman
to not be in the image, and for core-image-sato connman is always there.
(From OE-Core rev: 5dc237aa6aa8d86433ff7885b88efd8a7b79aa74)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oeqa/runtime/cases/multilib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/runtime/cases/multilib.py b/meta/lib/oeqa/runtime/cases/multilib.py index 56aed62eea..0d1b9ae2c9 100644 --- a/meta/lib/oeqa/runtime/cases/multilib.py +++ b/meta/lib/oeqa/runtime/cases/multilib.py | |||
@@ -42,6 +42,6 @@ class MultilibTest(OERuntimeTestCase): | |||
42 | self.archtest("/lib64/libc.so.6", "ELF64") | 42 | self.archtest("/lib64/libc.so.6", "ELF64") |
43 | 43 | ||
44 | @OETestDepends(['multilib.MultilibTest.test_check_multilib_libc']) | 44 | @OETestDepends(['multilib.MultilibTest.test_check_multilib_libc']) |
45 | @OEHasPackage(['lib32-connman', '!connman']) | 45 | @OEHasPackage(['lib32-connman']) |
46 | def test_file_connman(self): | 46 | def test_file_connman(self): |
47 | self.archtest("/usr/sbin/connmand", "ELF32") | 47 | self.archtest("/usr/sbin/connmand", "ELF32") |