diff options
author | Ross Burton <ross.burton@intel.com> | 2015-09-09 00:15:32 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-12 22:47:10 +0100 |
commit | 552daf60c58784c8f1acc12c5a443a44a922f743 (patch) | |
tree | 55e7b3098329f9080abc43246854525b573da247 /meta/classes/ptest.bbclass | |
parent | bded344a464bb854db3935da1f6a3320e5aa01e5 (diff) | |
download | openembedded-core-552daf60c58784c8f1acc12c5a443a44a922f743.tar.gz openembedded-core-552daf60c58784c8f1acc12c5a443a44a922f743.tar.bz2 openembedded-core-552daf60c58784c8f1acc12c5a443a44a922f743.zip |
ptest: fix file ownerships in ${PTEST_PATH}
As most upstreams don't have installable test suites it's fairly common to copy
files directly out of a source tree for ptests, but this results in files in the
recipe being owned by the user running bitbake:
WARNING: QA Issue: .../sed/4.2.2-r0/packages-split/sed-ptest/usr/lib64/
sed/ptest/testsuite/bug-regex21 is owned by uid 1000, which is the same
as the user running bitbake. This may be due to host contamination
[host-user-contaminated]
Instead of needing to fix this in every recipe that has this problem simply
chown the files to root:root in do_install_ptest_base.
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/classes/ptest.bbclass')
-rw-r--r-- | meta/classes/ptest.bbclass | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/ptest.bbclass b/meta/classes/ptest.bbclass index f30f26afab..66e364af53 100644 --- a/meta/classes/ptest.bbclass +++ b/meta/classes/ptest.bbclass @@ -43,6 +43,7 @@ fakeroot do_install_ptest_base() { oe_runmake DESTDIR=${D}${PTEST_PATH} install-ptest fi do_install_ptest + chown -R root:root ${D}${PTEST_PATH} fi } |