From 63a7f1fa29b0a9c36c44256a93fc78c852070b14 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Thu, 4 Feb 2021 16:06:44 -0800 Subject: [PATCH] ci/freedreno: Fix a5xx piglit runs. I missed this regression in the "start using Xorg" branch since the piglit runs are manual. I made the piglit runs accidentally require a core context, which a5xx can't do (it's only GL 3.1). Part-of: --- .gitlab-ci/piglit/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci/piglit/run.sh b/.gitlab-ci/piglit/run.sh index c12844a89fb..c0eea8836ad 100755 --- a/.gitlab-ci/piglit/run.sh +++ b/.gitlab-ci/piglit/run.sh @@ -106,7 +106,7 @@ else elif [ "x$PIGLIT_PLATFORM" = "xmixed_glx_egl" ]; then # It is assumed that you have already brought up your X server before # calling this script. - SANITY_MESA_VERSION_CMD="$SANITY_MESA_VERSION_CMD --platform glx --api gl --profile core" + SANITY_MESA_VERSION_CMD="$SANITY_MESA_VERSION_CMD --platform glx --api gl" else SANITY_MESA_VERSION_CMD="$SANITY_MESA_VERSION_CMD --platform glx --api gl --profile core" RUN_CMD_WRAPPER="xvfb-run --server-args=\"-noreset\" sh -c"