mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-04 14:39:54 +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"
|
||||
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}"
|
||||
status="${2}"
|
||||
t="${3}"
|
||||
|
||||
Reference in New Issue
Block a user