summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support
diff options
context:
space:
mode:
authorRoy Li <rongqing.li@windriver.com>2013-09-24 09:16:23 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-09-24 17:57:04 +0100
commit495d05ce7d57971514dd538accb14daf754643e6 (patch)
tree473adb500e973c6931fc20e6680525aa1a498321 /meta/recipes-support
parentbd5c5f012c71e64f37a7a8995baced98165181b1 (diff)
downloadpoky-495d05ce7d57971514dd538accb14daf754643e6.tar.gz
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; (From OE-Core rev: 1f059654bc81e55896c96c7c8e32e09f8925a761) Signed-off-by: Roy Li <rongqing.li@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support')
-rw-r--r--meta/recipes-support/ptest-runner/files/ptest-runner19
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
7 7
8 [ ! -d "$libdir" ] && continue 8 [ ! -d "$libdir" ] && continue
9 9
10 cd "$libdir" 10 for x in `ls -d $libdir/*/ptest 2>/dev/null`
11 for x in `find -L ./ -name run-ptest -type f -perm /u+x,g+x`
12 do 11 do
13 # test if a dir is linking to one that they are under same directory 12 [ ! -f $x/run-ptest ] && continue
14 # like perl5-->perl 13 [ -h `dirname $x` ] && continue
15 ptestdir=`dirname $x|cut -f2 -d"/"` 14
16 if [ -h "$ptestdir" ]; then
17 linkdir=`readlink -f "$ptestdir"`
18 if [ `dirname "$linkdir"` = "$libdir" ]; then
19 continue
20 fi
21 fi
22
23 date "+%Y-%m-%dT%H:%M" 15 date "+%Y-%m-%dT%H:%M"
24 echo "BEGIN: $x" 16 echo "BEGIN: $x"
25 pushd `dirname "$x"` 17 cd "$x"
26 ./run-ptest 18 ./run-ptest
27 popd
28 echo "END: $x" 19 echo "END: $x"
29 date "+%Y-%m-%dT%H:%M" 20 date "+%Y-%m-%dT%H:%M"
30 done 21 done