diff options
author | Harish Sadineni <Harish.Sadineni@windriver.com> | 2025-09-01 21:19:19 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-09-08 18:02:39 +0100 |
commit | 39d5df91edeef4cc0a87a60ddb42474c5003d38b (patch) | |
tree | 4bcbcc969d9aae5497b104b44fc6d59f4dcf2776 | |
parent | 9544bd9f57646466934f07fcb30993d001f74d15 (diff) | |
download | poky-39d5df91edeef4cc0a87a60ddb42474c5003d38b.tar.gz |
oeqa/selftest/cases/gcc.py: add libitm to default installed packages.
When running oe-selftest few libitm tests were getting failed due
to below error:
/tmp/runtest.923959/alloc-1.exe: error while loading shared libraries:
libitm.so.1: cannot open shared object file: No such file or directory
Adding libitm to default installed packages to fix this issue.
(From OE-Core rev: 0bc2cc9589b5cd3e11cbba1bb588785845db4faa)
Signed-off-by: Harish Sadineni <Harish.Sadineni@windriver.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/lib/oeqa/selftest/cases/gcc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/gcc.py b/meta/lib/oeqa/selftest/cases/gcc.py index eb8082db28..d01a791cb5 100644 --- a/meta/lib/oeqa/selftest/cases/gcc.py +++ b/meta/lib/oeqa/selftest/cases/gcc.py | |||
@@ -71,7 +71,7 @@ class GccSelfTestBase(OESelftestTestCase, OEPTestResultTestCase): | |||
71 | 71 | ||
72 | def run_check_emulated(self, *args, **kwargs): | 72 | def run_check_emulated(self, *args, **kwargs): |
73 | # build core-image-minimal with required packages | 73 | # build core-image-minimal with required packages |
74 | default_installed_packages = ["libgcc", "libstdc++", "libatomic", "libgomp"] | 74 | default_installed_packages = ["libgcc", "libstdc++", "libatomic", "libgomp", "libitm"] |
75 | features = [] | 75 | features = [] |
76 | features.append('IMAGE_FEATURES += "ssh-server-openssh"') | 76 | features.append('IMAGE_FEATURES += "ssh-server-openssh"') |
77 | features.append('CORE_IMAGE_EXTRA_INSTALL += "{0}"'.format(" ".join(default_installed_packages))) | 77 | features.append('CORE_IMAGE_EXTRA_INSTALL += "{0}"'.format(" ".join(default_installed_packages))) |