[oe-commits] [openembedded-core] 05/07: dbus-test: fix ptest failed problem when multilib is enabled

git at git.openembedded.org git at git.openembedded.org
Thu Sep 20 19:24:49 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit d1bdf962dc3f121066bd7efb451dd9072b881718
Author: Changqing Li <changqing.li at windriver.com>
AuthorDate: Thu Sep 20 10:16:27 2018 +0800

    dbus-test: fix ptest failed problem when multilib is enabled
    
    Fix some failed info like:
    | ./test/test-bus: relocation error: ./test/test-bus: symbol
    | _dbus_threads_init_debug, version LIBDBUS_PRIVATE_1.10.10 not defined
    | in file libdbus-1.so.3 with link time reference
    | FAIL: test/test-bus
    
    In run-ptest, LD_LIBRARY_PATH is set to /usr/lib, but when multilib
    is enabled, /usr/lib64 will be used. fix by replace with correct path.
    
    Signed-off-by: Changqing Li <changqing.li at windriver.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/recipes-core/dbus/dbus-test_1.12.10.bb | 1 +
 meta/recipes-core/dbus/dbus/run-ptest       | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-core/dbus/dbus-test_1.12.10.bb b/meta/recipes-core/dbus/dbus-test_1.12.10.bb
index e3ee608..25b9395 100644
--- a/meta/recipes-core/dbus/dbus-test_1.12.10.bb
+++ b/meta/recipes-core/dbus/dbus-test_1.12.10.bb
@@ -75,6 +75,7 @@ do_install_ptest() {
 		sed -i \
 		 -e 's:${B}:${PTEST_PATH}:g' \
 		 {} +
+        sed -i -e 's;@PTEST_PATH@;${PTEST_PATH};g'  ${D}${PTEST_PATH}/run-ptest
 }
 
 RDEPENDS_${PN}-ptest += "bash"
diff --git a/meta/recipes-core/dbus/dbus/run-ptest b/meta/recipes-core/dbus/dbus/run-ptest
index 8a8970e..353ba1e 100755
--- a/meta/recipes-core/dbus/dbus/run-ptest
+++ b/meta/recipes-core/dbus/dbus/run-ptest
@@ -12,7 +12,7 @@ output() {
 
 export DBUS_TEST_HOMEDIR=./test
 export XDG_RUNTIME_DIR=./test
-export LD_LIBRARY_PATH=/usr/lib/dbus-test/ptest/test/.libs
+export LD_LIBRARY_PATH=@PTEST_PATH@/test/.libs
 
 files=`ls test/test-*`
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list