From 642304595793c81898986b2febc8b6ca967124db Mon Sep 17 00:00:00 2001 From: Emma Anholt Date: Sun, 6 Feb 2022 19:16:09 -0800 Subject: [PATCH] ci/softpipe,llvmpipe: Disable Xvfb server reset on piglit runs. The resets take time that we don't need to spend. Part-of: --- src/gallium/drivers/llvmpipe/ci/gitlab-ci.yml | 2 +- src/gallium/drivers/softpipe/ci/gitlab-ci.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gallium/drivers/llvmpipe/ci/gitlab-ci.yml b/src/gallium/drivers/llvmpipe/ci/gitlab-ci.yml index f2ae24db036..221eabaf113 100644 --- a/src/gallium/drivers/llvmpipe/ci/gitlab-ci.yml +++ b/src/gallium/drivers/llvmpipe/ci/gitlab-ci.yml @@ -34,7 +34,7 @@ llvmpipe-piglit-gl: LP_NUM_THREADS: 0 PIGLIT_PROFILES: quick script: - - LD_LIBRARY_PATH=`pwd`/install xvfb-run install/piglit/piglit-runner.sh + - LD_LIBRARY_PATH=`pwd`/install xvfb-run --server-args='-noreset' install/piglit/piglit-runner.sh llvmpipe-traces: extends: diff --git a/src/gallium/drivers/softpipe/ci/gitlab-ci.yml b/src/gallium/drivers/softpipe/ci/gitlab-ci.yml index 2d4ef2e1f4c..d922fa6f34a 100644 --- a/src/gallium/drivers/softpipe/ci/gitlab-ci.yml +++ b/src/gallium/drivers/softpipe/ci/gitlab-ci.yml @@ -43,4 +43,4 @@ softpipe-piglit: variables: PIGLIT_PROFILES: gpu script: - - LD_LIBRARY_PATH=`pwd`/install/lib xvfb-run install/piglit/piglit-runner.sh + - LD_LIBRARY_PATH=`pwd`/install/lib xvfb-run --server-args='-noreset' install/piglit/piglit-runner.sh