mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 12:25:07 +00:00
Drop the -reset flag, so Xserver now either simply continues (w/o going through internal reset) when last client disconnected or terminates when -terminate is given. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
13 lines
338 B
Bash
Executable File
13 lines
338 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# this times out on Travis, because the tests take too long.
|
|
#if test "x$TRAVIS_BUILD_DIR" != "x"; then
|
|
# exit 77
|
|
#fi
|
|
|
|
export SERVER_COMMAND="$XSERVER_BUILDDIR/hw/vfb/Xvfb \
|
|
-screen scrn 1280x1024x24"
|
|
export PIGLIT_RESULTS_DIR=$XSERVER_BUILDDIR/test/piglit-results/xvfb
|
|
|
|
exec $XSERVER_DIR/test/scripts/run-piglit.sh
|