summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2023-04-13 08:45:49 -0700
committerKhem Raj <raj.khem@gmail.com>2023-04-14 08:44:20 -0700
commit18ef546186b58412aa74cb8c12f1d1747f91c392 (patch)
tree89b2dbcf8a71006b66262575d1a25fa751914547
parent9d0f892a26aa5d3f754b5cd9af77d4c442ccef12 (diff)
downloadmeta-openembedded-18ef546186b58412aa74cb8c12f1d1747f91c392.tar.gz
onig: Ignore .debug directories while finding ptests
.debug directories maybe generated when building ptest images with pkgs-dbg, these directories should be ignored in run-ptest script where it tries to find test binaries to execute Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rwxr-xr-xmeta-oe/recipes-support/onig/onig/run-ptest2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-support/onig/onig/run-ptest b/meta-oe/recipes-support/onig/onig/run-ptest
index 2574d7efa5..fbce336990 100755
--- a/meta-oe/recipes-support/onig/onig/run-ptest
+++ b/meta-oe/recipes-support/onig/onig/run-ptest
@@ -17,7 +17,7 @@ workdir=$(mktemp -d -t onig.ptest.XXXXXX)
17status="${workdir}/failed" 17status="${workdir}/failed"
18touch "${status}" 18touch "${status}"
19 19
20find tests/ -perm -111 -type f -exec sh -c ' 20find tests/ -perm -111 -type f ! -path "tests/.debug/*" -exec sh -c '
21 workdir="${1}" 21 workdir="${1}"
22 status="${2}" 22 status="${2}"
23 t="${3}" 23 t="${3}"