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