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:51:28 +0000 |
commit | b59eff83f971347254081426e8a1f2ef6ee700e5 (patch) | |
tree | 82f641442202970c77ae38a919f9f7b88649d112 /meta/recipes-extended/ltp/ltp_20150119.bb | |
parent | d1fc46a2b034a9dbe58d01920ad3ef4ad5131029 (diff) | |
download | openembedded-core-b59eff83f971347254081426e8a1f2ef6ee700e5.tar.gz openembedded-core-b59eff83f971347254081426e8a1f2ef6ee700e5.tar.bz2 openembedded-core-b59eff83f971347254081426e8a1f2ef6ee700e5.zip |
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.
Signed-off-by: Joe Slater <jslater@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-extended/ltp/ltp_20150119.bb')
-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" FILES_${PN}-dbg += "\ /opt/ltp/runtest/.debug \ - /opt/ltp/testcases/bin/.debug \ - /opt/ltp/testcases/bin/*/bin/.debug \ - /opt/ltp/testcases/bin/*/test/.debug \ + /opt/ltp/testcases/*/.debug \ + /opt/ltp/testcases/*/*/.debug \ + /opt/ltp/testcases/*/*/*/.debug \ /opt/ltp/scenario_groups/.debug \ /opt/ltp/testscripts/.debug \ /opt/ltp/testscripts/open_posix_testsuite/.debug \ @@ -79,3 +79,6 @@ FILES_${PN} += "/opt/ltp/* /opt/ltp/runtest/* /opt/ltp/scenario_groups/* /opt/lt # Avoid generated binaries stripping. Otherwise some of the ltp tests such as ldd01 & nm01 fails INHIBIT_PACKAGE_STRIP = "1" +# However, test_arch_stripped is already stripped, so... +INSANE_SKIP_${PN} += "already-stripped" + |