diff options
author | Roy Li <rongqing.li@windriver.com> | 2013-09-24 09:16:23 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-09-24 17:47:50 +0100 |
commit | 1f059654bc81e55896c96c7c8e32e09f8925a761 (patch) | |
tree | 1c9a80d2482c1b63ddf96356e8ab35c3dc314597 /meta/recipes-support/ptest-runner | |
parent | bec8a29fb27ccdada0839d0bdd67ae22179a94e8 (diff) | |
download | openembedded-core-1f059654bc81e55896c96c7c8e32e09f8925a761.tar.gz openembedded-core-1f059654bc81e55896c96c7c8e32e09f8925a761.tar.bz2 openembedded-core-1f059654bc81e55896c96c7c8e32e09f8925a761.zip |
ptest-runner: compatibile with busybox
Do not use pushd, busybox does not support it if system only has busybox;
Replace find command with ls to avoid some busybox's find unsupported options;
Signed-off-by: Roy Li <rongqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/ptest-runner')
-rw-r--r-- | meta/recipes-support/ptest-runner/files/ptest-runner | 19 |
1 files changed, 5 insertions, 14 deletions
diff --git a/meta/recipes-support/ptest-runner/files/ptest-runner b/meta/recipes-support/ptest-runner/files/ptest-runner index ccb04341c8..33424134c5 100644 --- a/meta/recipes-support/ptest-runner/files/ptest-runner +++ b/meta/recipes-support/ptest-runner/files/ptest-runner @@ -7,24 +7,15 @@ do [ ! -d "$libdir" ] && continue - cd "$libdir" - for x in `find -L ./ -name run-ptest -type f -perm /u+x,g+x` + for x in `ls -d $libdir/*/ptest 2>/dev/null` do - # test if a dir is linking to one that they are under same directory - # like perl5-->perl - ptestdir=`dirname $x|cut -f2 -d"/"` - if [ -h "$ptestdir" ]; then - linkdir=`readlink -f "$ptestdir"` - if [ `dirname "$linkdir"` = "$libdir" ]; then - continue - fi - fi - + [ ! -f $x/run-ptest ] && continue + [ -h `dirname $x` ] && continue + date "+%Y-%m-%dT%H:%M" echo "BEGIN: $x" - pushd `dirname "$x"` + cd "$x" ./run-ptest - popd echo "END: $x" date "+%Y-%m-%dT%H:%M" done |