From 596470547451084944082cbed50351ad0d912255 Mon Sep 17 00:00:00 2001 From: Chong Lu Date: Wed, 14 May 2014 17:29:07 +0800 Subject: dbus: Update to 1.8.2 version Upgrade dbus to 1.8.2. Modify ptest suite to make it enabled on new version. If systemd in DISTRO_FEATURES, we expect to install dbus systemd unit files. Remove unneeded patches since it's included in new version. Remove unrecognized option: "--with-xml" [YOCTO #6092] Signed-off-by: Chong Lu Signed-off-by: Saul Wold --- meta/recipes-core/dbus/dbus/run-ptest | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'meta/recipes-core/dbus/dbus/run-ptest') diff --git a/meta/recipes-core/dbus/dbus/run-ptest b/meta/recipes-core/dbus/dbus/run-ptest index e08ecb1a63..c72d083a91 100755 --- a/meta/recipes-core/dbus/dbus/run-ptest +++ b/meta/recipes-core/dbus/dbus/run-ptest @@ -1,3 +1,10 @@ #!/bin/sh -cd test -make -k runtest-TESTS + +output() { + if [ $? -eq 0 ] + then echo "PASS: $i" + else echo "FAIL: $i" + fi +} + +for i in `ls test/test-*`; do ./$i ./test/data DBUS_TEST_HOMEDIR=./test >/dev/null; output; done -- cgit 1.2.3-korg