diff options
author | Joerg Vehlow <joerg.vehlow@aox.de> | 2022-05-25 11:26:59 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-05-27 23:50:48 +0100 |
commit | f213de05de6826569b6c9bae7f58622d15156918 (patch) | |
tree | f39aecb481b11e24279ec1a8353a635211bd5eeb /meta/recipes-support/libseccomp | |
parent | 9c4a7c99ae4d4db9977ddbfee55342ab3d0addf0 (diff) | |
download | poky-f213de05de6826569b6c9bae7f58622d15156918.tar.gz |
libseccomp: Add missing files for ptests
pfc files are used e.g. in 38-basic-pfc_coverage.sh
valgrind_test.supp is required, when valgrind is installed, otherwise
all valgrind tests fail
(From OE-Core rev: 32ba67bc37b5ca73f7d29cb6c7de281ab8f824bd)
Signed-off-by: Joerg Vehlow <joerg.vehlow@aox.de>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/libseccomp')
-rw-r--r-- | meta/recipes-support/libseccomp/libseccomp_2.5.4.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-support/libseccomp/libseccomp_2.5.4.bb b/meta/recipes-support/libseccomp/libseccomp_2.5.4.bb index c76f3c3573..731d9ae08d 100644 --- a/meta/recipes-support/libseccomp/libseccomp_2.5.4.bb +++ b/meta/recipes-support/libseccomp/libseccomp_2.5.4.bb | |||
@@ -37,6 +37,10 @@ do_install_ptest() { | |||
37 | for file in $(find tests/*.tests -type f); do | 37 | for file in $(find tests/*.tests -type f); do |
38 | install -m 744 ${S}/${file} ${D}/${PTEST_PATH}/tests | 38 | install -m 744 ${S}/${file} ${D}/${PTEST_PATH}/tests |
39 | done | 39 | done |
40 | for file in $(find tests/*.pfc -type f); do | ||
41 | install -m 644 ${S}/${file} ${D}/${PTEST_PATH}/tests | ||
42 | done | ||
43 | install -m 644 ${S}/tests/valgrind_test.supp ${D}/${PTEST_PATH}/tests | ||
40 | for file in $(find tools/* -executable -type f); do | 44 | for file in $(find tools/* -executable -type f); do |
41 | install -m 744 ${S}/${file} ${D}/${PTEST_PATH}/tools | 45 | install -m 744 ${S}/${file} ${D}/${PTEST_PATH}/tools |
42 | done | 46 | done |