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

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

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

kill ${pid}

sleep 2

exit ${ret}