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

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

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

kill ${pid}

sleep 2

exit ${ret}