diff options
author | Daniel Friesel <derf@finalrewind.org> | 2010-10-02 20:16:54 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2010-10-02 20:16:54 +0200 |
commit | 7b86f410356941010402b2602eaf023b75438858 (patch) | |
tree | b3d5bf80d69374682ecedb22aa3b5e8de66d2dab /test/run-interactive | |
parent | cd5d2af0ad35ad5e6a8089733c031953b0c6ba42 (diff) |
test/run-interactive: Limit Xnest dimensions
Diffstat (limited to 'test/run-interactive')
-rwxr-xr-x | test/run-interactive | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/run-interactive b/test/run-interactive index 2b38c00..d6f3fc4 100755 --- a/test/run-interactive +++ b/test/run-interactive @@ -1,8 +1,8 @@ #!/bin/sh -Xnest :1 > /dev/null 2>&1 & +Xnest -geometry 500x500 :7 > /dev/null 2>&1 & pid=${!} -DISPLAY=:1 prove -v test/feh.i +DISPLAY=:7 prove -v test/feh.i kill ${pid} |