Files
poky/meta/recipes-core/dbus/dbus/run-ptest
Chong Lu 48fc1aac62 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]

(From OE-Core rev: 596470547451084944082cbed50351ad0d912255)

Signed-off-by: Chong Lu <Chong.Lu@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2014-05-15 23:24:42 +01:00

195 B
Executable File

#!/bin/sh

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