diff options
author | Joe Slater <jslater@windriver.com> | 2015-03-18 15:34:02 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-03-20 23:56:05 +0000 |
commit | 31801c66df9fcb14a60b3df2e6aa7c9b86fa702a (patch) | |
tree | 2c9a015fb1505ed74fc0d82f351777e6eb1b27be /meta | |
parent | 1a29b3b9d3c2dcb57119f78f137db3b8912822ec (diff) | |
download | poky-31801c66df9fcb14a60b3df2e6aa7c9b86fa702a.tar.gz |
ltp: find all .debug directories
The list of directories for ltp-dbg is incomplete, so
we generalize it.
We also eliminate a non-fatal qa error that the file
test_arch_stripped is stripped.
(From OE-Core rev: b59eff83f971347254081426e8a1f2ef6ee700e5)
Signed-off-by: Joe Slater <jslater@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-extended/ltp/ltp_20150119.bb | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/meta/recipes-extended/ltp/ltp_20150119.bb b/meta/recipes-extended/ltp/ltp_20150119.bb index b422646903..90c5973a08 100644 --- a/meta/recipes-extended/ltp/ltp_20150119.bb +++ b/meta/recipes-extended/ltp/ltp_20150119.bb | |||
@@ -65,9 +65,9 @@ RDEPENDS_${PN} = "perl e2fsprogs-mke2fs python-core libaio bash gawk expect" | |||
65 | 65 | ||
66 | FILES_${PN}-dbg += "\ | 66 | FILES_${PN}-dbg += "\ |
67 | /opt/ltp/runtest/.debug \ | 67 | /opt/ltp/runtest/.debug \ |
68 | /opt/ltp/testcases/bin/.debug \ | 68 | /opt/ltp/testcases/*/.debug \ |
69 | /opt/ltp/testcases/bin/*/bin/.debug \ | 69 | /opt/ltp/testcases/*/*/.debug \ |
70 | /opt/ltp/testcases/bin/*/test/.debug \ | 70 | /opt/ltp/testcases/*/*/*/.debug \ |
71 | /opt/ltp/scenario_groups/.debug \ | 71 | /opt/ltp/scenario_groups/.debug \ |
72 | /opt/ltp/testscripts/.debug \ | 72 | /opt/ltp/testscripts/.debug \ |
73 | /opt/ltp/testscripts/open_posix_testsuite/.debug \ | 73 | /opt/ltp/testscripts/open_posix_testsuite/.debug \ |
@@ -79,3 +79,6 @@ FILES_${PN} += "/opt/ltp/* /opt/ltp/runtest/* /opt/ltp/scenario_groups/* /opt/lt | |||
79 | 79 | ||
80 | # Avoid generated binaries stripping. Otherwise some of the ltp tests such as ldd01 & nm01 fails | 80 | # Avoid generated binaries stripping. Otherwise some of the ltp tests such as ldd01 & nm01 fails |
81 | INHIBIT_PACKAGE_STRIP = "1" | 81 | INHIBIT_PACKAGE_STRIP = "1" |
82 | # However, test_arch_stripped is already stripped, so... | ||
83 | INSANE_SKIP_${PN} += "already-stripped" | ||
84 | |||