summaryrefslogtreecommitdiff
path: root/test/run-interactive
blob: a342c223b162547912411e856e94bfa55dce2f52 (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 test/feh-scr-i.t test/feh-i.t
ret=${?}

kill ${pid}

sleep 2

exit ${ret}