diff options
author | Michel Dänzer <[email protected]> | 2019-12-03 10:45:28 +0100 |
---|---|---|
committer | Michel Dänzer <[email protected]> | 2019-12-04 10:36:33 +0100 |
commit | 5585b8eaddd6799b4486a749de18ae9a6f03b91c (patch) | |
tree | 453fe087f6f1a1d7de47d5942a595d9f2915c620 /.gitlab-ci/piglit/run.sh | |
parent | ddacd3d43b203e7c66ec366820e2a230b7e3aa67 (diff) |
gitlab-ci: Run piglit glslparser & quick_shader tests separately
And only use --process-isolation false for the quick_gl tests.
This will hopefully avoid variance in the test results that we've been
seeing lately. But even if it doesn't, it should at least help narrow
down the cause of the variance.
Tested-by: Vasily Khoruzhick <[email protected]>
Acked-by: Pierre-Eric Pelloux-Prayer <[email protected]>
Diffstat (limited to '.gitlab-ci/piglit/run.sh')
-rwxr-xr-x | .gitlab-ci/piglit/run.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci/piglit/run.sh b/.gitlab-ci/piglit/run.sh index dafac74d9f5..9b40e997388 100755 --- a/.gitlab-ci/piglit/run.sh +++ b/.gitlab-ci/piglit/run.sh @@ -11,7 +11,7 @@ PIGLIT_OPTIONS=$(echo $PIGLIT_OPTIONS | head -n 1) xvfb-run --server-args="-noreset" sh -c \ "export LD_LIBRARY_PATH=$OLDPWD/install/lib; wflinfo --platform glx --api gl --profile core | grep \"Mesa $VERSION\\\$\" && - ./piglit run -j4 --process-isolation false $PIGLIT_OPTIONS $PIGLIT_PROFILES $OLDPWD/results" + ./piglit run -j4 $PIGLIT_OPTIONS $PIGLIT_PROFILES $OLDPWD/results" PIGLIT_RESULTS=${PIGLIT_RESULTS:-$PIGLIT_PROFILES} mkdir -p .gitlab-ci/piglit |