diff options
| author | Khem Raj <raj.khem@gmail.com> | 2023-04-13 08:45:49 -0700 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2023-04-14 08:44:20 -0700 |
| commit | 18ef546186b58412aa74cb8c12f1d1747f91c392 (patch) | |
| tree | 89b2dbcf8a71006b66262575d1a25fa751914547 | |
| parent | 9d0f892a26aa5d3f754b5cd9af77d4c442ccef12 (diff) | |
| download | meta-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-x | meta-oe/recipes-support/onig/onig/run-ptest | 2 |
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) | |||
| 17 | status="${workdir}/failed" | 17 | status="${workdir}/failed" |
| 18 | touch "${status}" | 18 | touch "${status}" |
| 19 | 19 | ||
| 20 | find tests/ -perm -111 -type f -exec sh -c ' | 20 | find 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}" |
