summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorMark Hatle <mark.hatle@windriver.com>2017-08-29 23:21:18 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-08-31 17:57:12 +0100
commit371f480aebc41a9c4ebbf8e3fbab5dd6c65bb706 (patch)
tree0628a7e300dcb0154e6b9649cfd30f1e2b17eb6e /meta
parent3afca26b11f534506f68d50c12ed7a7b72081a9d (diff)
downloadpoky-371f480aebc41a9c4ebbf8e3fbab5dd6c65bb706.tar.gz
ltp: Skip the filedependency scan
Since LTP includes a set of test cases, we need to skip file dependency generation, as there will be dependencies that can not be satisfied. In this case a csh and ksh dependency come from two tests. The alternative would be to depend on csh/ksh (a bad idea as they're not available in oe-core) or remove the tests (but this eliminates the tests if someone DOES have csh/ksh in their configurations.) (From OE-Core rev: 873ad32191816f89d085906635297eb17d9fc0f6) Signed-off-by: Mark Hatle <mark.hatle@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-extended/ltp/ltp_20170116.bb5
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-extended/ltp/ltp_20170116.bb b/meta/recipes-extended/ltp/ltp_20170116.bb
index a5494bc809..58af104919 100644
--- a/meta/recipes-extended/ltp/ltp_20170116.bb
+++ b/meta/recipes-extended/ltp/ltp_20170116.bb
@@ -107,3 +107,8 @@ INHIBIT_PACKAGE_DEBUG_SPLIT = "1"
107# However, test_arch_stripped is already stripped, so... 107# However, test_arch_stripped is already stripped, so...
108INSANE_SKIP_${PN} += "already-stripped" 108INSANE_SKIP_${PN} += "already-stripped"
109 109
110# Avoid file dependency scans, as LTP checks for things that may or may not
111# exist on the running system. For instance it has specific checks for
112# csh and ksh which are not typically part of OpenEmbedded systems (but
113# can be added via additional layers.)
114SKIP_FILEDEPS_${PN} = '1'