summaryrefslogtreecommitdiff
path: root/test/run-interactive
blob: 788ca3b2477eff26cb941159b2d257a4a70b6cfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

Xephyr -screen 500x500 :7 > /dev/null 2>&1 &
pid=${!}

sleep 2

DISPLAY=:7 prove -j1 test/feh-scr-i.t test/feh-i.t
ret=${?}

kill ${pid}

sleep 2

exit ${ret}