diff options
Diffstat (limited to 'xserver/test/scripts/xephyr-glamor-piglit.sh')
-rw-r--r-- | xserver/test/scripts/xephyr-glamor-piglit.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/xserver/test/scripts/xephyr-glamor-piglit.sh b/xserver/test/scripts/xephyr-glamor-piglit.sh index 51d42c313..c16fdc4f3 100644 --- a/xserver/test/scripts/xephyr-glamor-piglit.sh +++ b/xserver/test/scripts/xephyr-glamor-piglit.sh @@ -1,3 +1,10 @@ +#!/bin/sh + +# this times out on Travis, because the tests take too long. +if test "x$TRAVIS_BUILD_DIR" != "x"; then + exit 77 +fi + # Start a Xephyr server using glamor. Since the test environment is # headless, we start an Xvfb first to host the Xephyr. export PIGLIT_RESULTS_DIR=$XSERVER_BUILDDIR/test/piglit-results/xephyr-glamor |