mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-27 07:57:27 +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:
@@ -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}"
|
||||||
|
|||||||
Reference in New Issue
Block a user