[OE-core] [PATCH] ptest-runner: compatibile with busybox

rongqing.li at windriver.com rongqing.li at windriver.com
Mon Sep 23 02:02:02 UTC 2013


From: Roy Li <rongqing.li at windriver.com>

Do not use pushd, busybox does not support it if system only has busybox;
run-ptests are always installed under ${libdir}, not linked into ${libdir},
so do not need to find run-ptest under a link, that avoid to use -L option
when use find command

Signed-off-by: Roy Li <rongqing.li at windriver.com>
---
 meta/recipes-support/ptest-runner/files/ptest-runner |   16 ++--------------
 1 file changed, 2 insertions(+), 14 deletions(-)

diff --git a/meta/recipes-support/ptest-runner/files/ptest-runner b/meta/recipes-support/ptest-runner/files/ptest-runner
index ccb0434..3c89073 100644
--- a/meta/recipes-support/ptest-runner/files/ptest-runner
+++ b/meta/recipes-support/ptest-runner/files/ptest-runner
@@ -7,24 +7,12 @@ do
 
     [ ! -d "$libdir" ] && continue
 
-    cd "$libdir"
-    for x in `find -L ./ -name run-ptest -type f -perm /u+x,g+x`
+    for x in `find $libdir -name run-ptest -type f`
     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
-    
         date "+%Y-%m-%dT%H:%M"
         echo "BEGIN: $x"
-        pushd `dirname "$x"`
+        cd `dirname "$x"`
         ./run-ptest
-        popd
         echo "END: $x"
         date "+%Y-%m-%dT%H:%M"
     done
-- 
1.7.10.4




More information about the Openembedded-core mailing list