summaryrefslogtreecommitdiff
path: root/test/run-interactive
diff options
context:
space:
mode:
Diffstat (limited to 'test/run-interactive')
-rwxr-xr-xtest/run-interactive11
1 files changed, 9 insertions, 2 deletions
diff --git a/test/run-interactive b/test/run-interactive
index 2b38c00..788ca3b 100755
--- a/test/run-interactive
+++ b/test/run-interactive
@@ -1,8 +1,15 @@
#!/bin/sh
-Xnest :1 > /dev/null 2>&1 &
+Xephyr -screen 500x500 :7 > /dev/null 2>&1 &
pid=${!}
-DISPLAY=:1 prove -v test/feh.i
+sleep 2
+
+DISPLAY=:7 prove -j1 test/feh-scr-i.t test/feh-i.t
+ret=${?}
kill ${pid}
+
+sleep 2
+
+exit ${ret}