aboutsummaryrefslogtreecommitdiffstats
path: root/community/girara/test.sh
blob: 690b3c5a385e136a2387cde322426501eef4d91d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

Xvfb :4242 &
PID=$!
export DISPLAY=:4242
if make test COLOR=0; then
	kill $PID
	return 0
else
	kill $PID
	return 1
fi