From: John (J5) Palmieri Date: Tue, 15 Jan 2008 21:23:54 +0000 (-0500) Subject: make shell script more portable (FDO Bug #11667) X-Git-Tag: dbus-1.1.3~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=94bc113117ea967c3c77d6a19ab3971ac6455765;p=thirdparty%2Fdbus.git make shell script more portable (FDO Bug #11667) 2008-01-15 John (J5) Palmieri * tests/name-test/run-test.sh: make more portable (FDO Bug #11667) --- diff --git a/ChangeLog b/ChangeLog index abc9be210..a8d5ab01f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-01-15 John (J5) Palmieri + + * tests/name-test/run-test.sh: make more portable (FDO Bug #11667) + 2008-01-15 John (J5) Palmieri * patch by Kimmo Hämäläinen diff --git a/test/name-test/run-test.sh b/test/name-test/run-test.sh index 0a1f7112d..5d9c584ad 100755 --- a/test/name-test/run-test.sh +++ b/test/name-test/run-test.sh @@ -16,7 +16,8 @@ SCRIPTNAME=$0 MODE=$1 ## so the tests can complain if you fail to use the script to launch them -export DBUS_TEST_NAME_RUN_TEST_SCRIPT=1 +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 @@ -25,13 +26,13 @@ if test -z "$DBUS_TEST_NAME_IN_RUN_TEST"; then exec $DBUS_TOP_SRCDIR/tools/run-with-tmp-session-bus.sh $SCRIPTNAME $MODE fi echo "running test-ids" -libtool --mode=execute $DEBUG $DBUS_TOP_BUILDDIR/test/name-test/test-ids || die "test-ids failed" +${DBUS_TOP_BUILDDIR}/libtool --mode=execute $DEBUG $DBUS_TOP_BUILDDIR/test/name-test/test-ids || die "test-ids failed" echo "running test-names" -libtool --mode=execute $DEBUG $DBUS_TOP_BUILDDIR/test/name-test/test-names || die "test-names failed" +${DBUS_TOP_BUILDDIR}/libtool --mode=execute $DEBUG $DBUS_TOP_BUILDDIR/test/name-test/test-names || die "test-names failed" echo "running test-pending-call-dispatch" -libtool --mode=execute $DEBUG $DBUS_TOP_BUILDDIR/test/name-test/test-pending-call-dispatch || die "test-pending-call-dispatch failed" +${DBUS_TOP_BUILDDIR}/libtool --mode=execute $DEBUG $DBUS_TOP_BUILDDIR/test/name-test/test-pending-call-dispatch || die "test-pending-call-dispatch failed" echo "running test-threads-init" -libtool --mode=execute $DEBUG $DBUS_TOP_BUILDDIR/test/name-test/test-threads-init || die "test-threads-init failed" +${DBUS_TOP_BUILDDIR}/libtool --mode=execute $DEBUG $DBUS_TOP_BUILDDIR/test/name-test/test-threads-init || die "test-threads-init failed"