diff options
author | Mark Hatle <mark.hatle@windriver.com> | 2017-08-16 10:55:21 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-08-16 17:42:42 +0100 |
commit | 8c4dcdfa9d5a37acb6f492b1cf0e40a403e5fbe9 (patch) | |
tree | f2923380e8309a3c8164a98305c3410cb6daec46 | |
parent | 7e70d0673df20669edd18b79ae065d8c2f655b8a (diff) | |
download | openembedded-core-8c4dcdfa9d5a37acb6f492b1cf0e40a403e5fbe9.tar.gz openembedded-core-8c4dcdfa9d5a37acb6f492b1cf0e40a403e5fbe9.tar.bz2 openembedded-core-8c4dcdfa9d5a37acb6f492b1cf0e40a403e5fbe9.zip |
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.)
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-extended/ltp/ltp_20170516.bb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/recipes-extended/ltp/ltp_20170516.bb b/meta/recipes-extended/ltp/ltp_20170516.bb index 665e08f204..1d0cc1af3a 100644 --- a/meta/recipes-extended/ltp/ltp_20170516.bb +++ b/meta/recipes-extended/ltp/ltp_20170516.bb @@ -114,3 +114,9 @@ INHIBIT_PACKAGE_STRIP = "1" INHIBIT_PACKAGE_DEBUG_SPLIT = "1" # However, test_arch_stripped is already stripped, so... INSANE_SKIP_${PN} += "already-stripped" + +# Avoid file dependency scans, as LTP checks for things that may or may not +# exist on the running system. For instance it has specific checks for +# csh and ksh which are not typically part of OpenEmbedded systems (but +# can be added via additional layers.) +SKIP_FILEDEPS_${PN} = '1' |