~compiz-team/compiz-core/0.9.8

« back to all changes in this revision

Viewing changes to scripts/run-with-xvfb.sh

  • Committer: Alan Griffiths
  • Date: 2012-05-10 16:45:48 UTC
  • mfrom: (3129.1.26 arg-work)
  • Revision ID: alan@octopull.co.uk-20120510164548-za4kxch52pjifh49
Eliminate friend declarations from CompScreen interface.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
    exit 1
9
9
fi
10
10
 
11
 
# The script should still pass if you have a real Xserver and no Xvfb
12
 
if [ ! -z "$DISPLAY" ]; then
13
 
    echo "Note: You are already running an Xserver."
14
 
    $1
15
 
else
16
 
    xvfb=`which Xvfb`
17
 
    if [ ! -x "$xvfb" ]; then
18
 
        echo "Error: Xvfb does not seem to be installed."
19
 
        exit 1
20
 
    fi
 
11
xvfb=`which Xvfb`
 
12
if [ ! -x "$xvfb" ]; then
 
13
    echo "Error: Xvfb does not seem to be installed."
 
14
    exit 1
 
15
fi
21
16
 
 
17
if [ -z "$DISPLAY" ]; then
22
18
    Xvfb -ac -noreset -screen 0 1024x768x16 -help 2>/dev/null 1>&2
23
19
    XID=`for id in 101 102 103 104 105 106 107 197 199 211 223 227 293 307 308 309 310 311 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 4703 4721 4723 4729 4733 4751 9973 9974 9975 9976 9977 9978 9979 9980 9981 9982 9983 9984 9985 9986 9987 9988 9989 9990 9991 9992 9993 9994 9995 9996 9997 9998 9999 ; do test -e /tmp/.X$id-lock || { echo $id; exit 0; }; done; echo "No Display ports available, quit."; exit 1`
24
20
    { Xvfb -ac -noreset -screen 0 1024x768x16 :$XID -nolisten tcp -auth /dev/null >/dev/null 2>&1 & trap "kill -15 $! " 0 HUP INT QUIT TRAP USR1 PIPE TERM ; } || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; }
25
21
    DISPLAY=:$XID $1
 
22
else
 
23
    echo "Note: You are already running an Xserver."
 
24
    $1
26
25
fi