mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-05-01 12:38:07 +02:00
This simplifies bootstrapping: now you don't have to build dbus, build dbus-python (with GLib), and use dbus-python to test dbus. It also avoids test failures when using facilities like AddressSanitizer. When libdbus is built with AddressSanitizer, but the system copies of Python and dbus-python were not, dbus-python will exit the Python interpreter on load, because libasan wasn't already initialized. The simplest way to avoid this is to not use Python: the scripts are not *that* hard to translate into C. Both of these tests happen to be conditionally compiled for Unix only. test_activation_forking() relies on code in TestSuiteForkingEchoService that calls fork(), which can only work on Unix; meanwhile, test_system_signals() tests the system bus configuration, which is only relevant to Unix because we don't support using dbus-daemon as a privilege boundary on Windows (and in any case D-Bus is not a Windows OS feature, so the system bus cannot be used to communicate with OS services like it can on most Linux systems). This is also a partial solution to <https://gitlab.freedesktop.org/dbus/dbus/issues/135>, by reducing the size of name-test/. For this to work, we need to build the test-service helper executable even if embedded tests are disabled. Signed-off-by: Simon McVittie <smcv@collabora.com>
60 lines
1.3 KiB
Bash
Executable file
60 lines
1.3 KiB
Bash
Executable file
#! /bin/sh
|
|
|
|
SCRIPTNAME=$0
|
|
MODE=$1
|
|
|
|
## so the tests can complain if you fail to use the script to launch them
|
|
DBUS_TEST_NAME_RUN_TEST_SCRIPT=1
|
|
export DBUS_TEST_NAME_RUN_TEST_SCRIPT
|
|
|
|
# Rerun ourselves with tmp session bus if we're not already
|
|
if test -z "$DBUS_TEST_NAME_IN_RUN_TEST"; then
|
|
DBUS_TEST_NAME_IN_RUN_TEST=1
|
|
export DBUS_TEST_NAME_IN_RUN_TEST
|
|
exec $DBUS_TOP_SRCDIR/tools/run-with-tmp-session-bus.sh $SCRIPTNAME $MODE
|
|
fi
|
|
|
|
if test -n "$DBUS_TEST_MONITOR"; then
|
|
dbus-monitor --session >&2 &
|
|
fi
|
|
|
|
XDG_RUNTIME_DIR="$DBUS_TOP_BUILDDIR"/test/XDG_RUNTIME_DIR
|
|
test -d "$XDG_RUNTIME_DIR" || mkdir "$XDG_RUNTIME_DIR"
|
|
chmod 0700 "$XDG_RUNTIME_DIR"
|
|
export XDG_RUNTIME_DIR
|
|
|
|
# Translate a command and exit status into TAP syntax.
|
|
# Usage: interpret_result $? description-of-test
|
|
# Uses global variable $test_num.
|
|
interpret_result () {
|
|
e="$1"
|
|
shift
|
|
case "$e" in
|
|
(0)
|
|
echo "ok $test_num $*"
|
|
;;
|
|
(77)
|
|
echo "ok $test_num # SKIP $*"
|
|
;;
|
|
(*)
|
|
echo "not ok $test_num $*"
|
|
;;
|
|
esac
|
|
test_num=$(( $test_num + 1 ))
|
|
}
|
|
|
|
c_test () {
|
|
t="$1"
|
|
shift
|
|
e=0
|
|
echo "# running test $t"
|
|
"${DBUS_TOP_BUILDDIR}/libtool" --mode=execute $DEBUG "$DBUS_TOP_BUILDDIR/test/name-test/$t" "$@" >&2 || e=$?
|
|
echo "# exit status $e"
|
|
interpret_result "$e" "$t" "$@"
|
|
}
|
|
|
|
test_num=1
|
|
# TAP test plan: we will run 1 test
|
|
echo "1..1"
|
|
|
|
c_test test-autolaunch
|