diff options
Diffstat (limited to 'meta-oe/recipes-devtools/jemalloc/jemalloc_5.3.0.bb')
-rw-r--r-- | meta-oe/recipes-devtools/jemalloc/jemalloc_5.3.0.bb | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/meta-oe/recipes-devtools/jemalloc/jemalloc_5.3.0.bb b/meta-oe/recipes-devtools/jemalloc/jemalloc_5.3.0.bb index 950b64ee9..9ad83261e 100644 --- a/meta-oe/recipes-devtools/jemalloc/jemalloc_5.3.0.bb +++ b/meta-oe/recipes-devtools/jemalloc/jemalloc_5.3.0.bb | |||
@@ -42,10 +42,13 @@ do_compile_ptest() { | |||
42 | 42 | ||
43 | do_install_ptest() { | 43 | do_install_ptest() { |
44 | install -d ${D}${PTEST_PATH}/tests | 44 | install -d ${D}${PTEST_PATH}/tests |
45 | subdirs="test/unit test/integration test/stress " | 45 | subdirs="unit integration stress " |
46 | for tooltest in ${subdirs} | 46 | for tooltest in ${subdirs} |
47 | do | 47 | do |
48 | cp -r ${B}/${tooltest} ${D}${PTEST_PATH}/tests | 48 | cp -r ${B}/test/${tooltest} ${D}${PTEST_PATH}/tests |
49 | if find ${S}/test/${tooltest}/ -name '*.sh' -print -quit | grep -q .; then | ||
50 | cp ${S}/test/${tooltest}/*.sh ${D}${PTEST_PATH}/tests/${tooltest} | ||
51 | fi | ||
49 | done | 52 | done |
50 | find ${D}${PTEST_PATH}/tests \( -name "*.d" -o -name "*.o" \) -exec rm -f {} \; | 53 | find ${D}${PTEST_PATH}/tests \( -name "*.d" -o -name "*.o" \) -exec rm -f {} \; |
51 | } | 54 | } |