diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-08-07 13:37:24 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-08-08 08:26:14 +0100 |
commit | a8b4b3ef0735d847011bf9015d879b50421ffea6 (patch) | |
tree | 592cc99d8101b30d956b9a6464c0c791cd0b85f1 | |
parent | e6a49ef35322cdb72f348261b0b35ec0b619e337 (diff) | |
download | poky-a8b4b3ef0735d847011bf9015d879b50421ffea6.tar.gz |
glibc-y2038-tests: Fix debug split and drop INSANE_SKIPs
Create the separate dbg package and then drop and the INSANE_SKIP values
as none of them appear to be needed once debug splitting is fixed.
(From OE-Core rev: 922b5e7272c9b63c39d0c5ee0a67f08664994ab9)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-core/glibc/glibc-y2038-tests_2.40.bb | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/meta/recipes-core/glibc/glibc-y2038-tests_2.40.bb b/meta/recipes-core/glibc/glibc-y2038-tests_2.40.bb index b760230aec..5a79919634 100644 --- a/meta/recipes-core/glibc/glibc-y2038-tests_2.40.bb +++ b/meta/recipes-core/glibc/glibc-y2038-tests_2.40.bb | |||
@@ -13,7 +13,7 @@ SUMMARY = "glibc tests using time32/time64 interfaces to be run with ptest for t | |||
13 | # Erase some variables already set by glibc_${PV} | 13 | # Erase some variables already set by glibc_${PV} |
14 | python __anonymous() { | 14 | python __anonymous() { |
15 | # Remove packages provided by glibc build, we only need a subset of them | 15 | # Remove packages provided by glibc build, we only need a subset of them |
16 | d.setVar("PACKAGES", "${PN} ${PN}-ptest") | 16 | d.setVar("PACKAGES", "${PN} ${PN}-dbg ${PN}-ptest") |
17 | 17 | ||
18 | d.setVar("PROVIDES", "${PN} ${PN}-ptest") | 18 | d.setVar("PROVIDES", "${PN} ${PN}-ptest") |
19 | 19 | ||
@@ -108,12 +108,6 @@ EXCLUDE_FROM_SHLIBS = "1" | |||
108 | # debugging. | 108 | # debugging. |
109 | PACKAGE_DEBUG_SPLIT_STYLE = ".debug" | 109 | PACKAGE_DEBUG_SPLIT_STYLE = ".debug" |
110 | 110 | ||
111 | # glibc test cases violate by default some Yocto/OE checks (staticdev, | ||
112 | # textrel) | ||
113 | # 'debug-files' - add everything (including debug) into one package | ||
114 | # (no need to install/build *-src package) | ||
115 | INSANE_SKIP:${PN} += "staticdev textrel debug-files rpaths" | ||
116 | |||
117 | deltask do_stash_locale | 111 | deltask do_stash_locale |
118 | do_install[noexec] = "1" | 112 | do_install[noexec] = "1" |
119 | do_populate_sysroot[noexec] = "1" | 113 | do_populate_sysroot[noexec] = "1" |