diff options
author | Joerg Vehlow <joerg.vehlow@aox.de> | 2022-05-25 11:26:59 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-06-07 11:53:26 +0100 |
commit | 9437dc278354f0d43d18b9c32fa07746c404c14c (patch) | |
tree | 7e77d08238a6c253cea4dbd0830989c606f1267a | |
parent | 57e088cfe35c7a62459296ed9f2f7b375ac34dbc (diff) | |
download | poky-9437dc278354f0d43d18b9c32fa07746c404c14c.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: b34aaa9acbe865f61be0a598b8df2735b1bc76cd)
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>
(cherry picked from commit 32ba67bc37b5ca73f7d29cb6c7de281ab8f824bd)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-support/libseccomp/libseccomp_2.5.3.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-support/libseccomp/libseccomp_2.5.3.bb b/meta/recipes-support/libseccomp/libseccomp_2.5.3.bb index e6260a7754..d47200e01c 100644 --- a/meta/recipes-support/libseccomp/libseccomp_2.5.3.bb +++ b/meta/recipes-support/libseccomp/libseccomp_2.5.3.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 |