From 4803523d2697e7eceef4cde7a2ea398e70fe28fe Mon Sep 17 00:00:00 2001 From: Havoc Pennington Date: Sun, 12 Oct 2003 15:35:23 +0000 Subject: my cvs add fu is really bad lately... --- test/glib/run-test.sh | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100755 test/glib/run-test.sh (limited to 'test') diff --git a/test/glib/run-test.sh b/test/glib/run-test.sh new file mode 100755 index 00000000..ccbb9a4a --- /dev/null +++ b/test/glib/run-test.sh @@ -0,0 +1,53 @@ +#! /bin/bash + +SCRIPTNAME=$0 + +function die() +{ + echo $SCRIPTNAME: $* >&2 + exit 1 +} + +if test -z "$DBUS_TOP_BUILDDIR" ; then + die "Must set DBUS_TOP_BUILDDIR" +fi + +CONFIG_FILE=./run-test.conf + +## create a configuration file based on the standard session.conf +cat $DBUS_TOP_BUILDDIR/bus/session.conf | \ + sed -e 's/.*$//g' | \ + sed -e 's/ $CONFIG_FILE + +echo "Created configuration file $CONFIG_FILE" + +export PATH=$DBUS_TOP_BUILDDIR/bus:$PATH +## the libtool script found by the path search should already do this, but +export LD_LIBRARY_PATH=$DBUS_TOP_BUILDDIR/dbus/.libs:$LD_LIBRARY_PATH + +## will only do anything on Linux +export MALLOC_CHECK_=2 + +echo "Using daemon "`type dbus-daemon-1` + +eval `$DBUS_TOP_BUILDDIR/tools/dbus-launch --sh-syntax --config-file=$CONFIG_FILE` + +if test -z "$DBUS_SESSION_BUS_PID" ; then + die "Failed to launch message bus for tests to run" +fi + +echo "Started test bus pid $DBUS_SESSION_BUS_PID at $DBUS_SESSION_BUS_ADDRESS" + +$DBUS_TOP_BUILDDIR/test/glib/test-dbus-glib || die "test-dbus-glib failed" + +## we kill -TERM so gcov data can be written out + +kill -TERM $DBUS_SESSION_BUS_PID || die "Message bus vanished! should not have happened" && echo "Killed daemon $DBUS_SESSION_BUS_PID" + +sleep 2 + +## be sure it really died +kill -9 $DBUS_SESSION_BUS_PID > /dev/null 2>&1 || true + +exit 0 \ No newline at end of file -- cgit