mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-16 23:41:53 +00:00
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>
This commit is contained in:
parent
9d0f892a26
commit
18ef546186
@ -17,7 +17,7 @@ workdir=$(mktemp -d -t onig.ptest.XXXXXX)
|
|||||||
status="${workdir}/failed"
|
status="${workdir}/failed"
|
||||||
touch "${status}"
|
touch "${status}"
|
||||||
|
|
||||||
find tests/ -perm -111 -type f -exec sh -c '
|
find tests/ -perm -111 -type f ! -path "tests/.debug/*" -exec sh -c '
|
||||||
workdir="${1}"
|
workdir="${1}"
|
||||||
status="${2}"
|
status="${2}"
|
||||||
t="${3}"
|
t="${3}"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user