aboutsummaryrefslogtreecommitdiff
path: root/tests/run_one_test.sh
blob: 46193595890d2ded12771d0fa3782c67cb8bac6b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh
set -xe
if [ -z $DISPLAY ]; then
	exec xvfb-run -s "+extension composite" -a $0 $1 $2 $3
fi

echo "Running test $2"

# TODO keep the log file, and parse it to see if test is successful
($1 --dbus --experimental-backends --backend dummy --log-level=debug --log-file=$PWD/log --config=$2) &
main_pid=$!
$3

kill -INT $main_pid || true
cat log
rm log
wait $main_pid