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

kill ${pid}

sleep 2

exit ${ret}