summaryrefslogtreecommitdiff
path: root/tests/functional-tests/test-runner.sh.in
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional-tests/test-runner.sh.in')
-rwxr-xr-xtests/functional-tests/test-runner.sh.in20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/functional-tests/test-runner.sh.in b/tests/functional-tests/test-runner.sh.in
deleted file mode 100755
index 6e295aec6..000000000
--- a/tests/functional-tests/test-runner.sh.in
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/bash
-#
-# Test runner script for Tracker's functional tests
-
-set -e
-
-export TEMP_DIR=`mktemp --tmpdir -d tracker-test-XXXX`
-
-# We need to use the actual home directory for some tests because
-# Tracker will explicitly ignore files in /tmp ...
-export REAL_HOME=`echo ~`
-
-# ... but /tmp is preferred for test data, to avoid leaving debris
-# in the filesystem
-HOME=$TEMP_DIR
-
-echo "Running $@"
-dbus-run-session --config-file=@abs_top_builddir@/tests/test-bus.conf -- "$@"
-
-rm -R $TEMP_DIR