Module: Mesa Branch: main Commit: 9e8450b65ccc36588e0594f28210652d90493a80 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=9e8450b65ccc36588e0594f28210652d90493a80
Author: Rob Clark <[email protected]> Date: Thu Feb 23 09:18:30 2023 -0800 freedreno/crashdec: Disable GALLIUM_DUMP_CPU We don't want util_cpu to vomit cpu caps all over the test output. Signed-off-by: Rob Clark <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19551> --- src/freedreno/decode/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/src/freedreno/decode/meson.build b/src/freedreno/decode/meson.build index 762c9f14363..5c97eaf1a34 100644 --- a/src/freedreno/decode/meson.build +++ b/src/freedreno/decode/meson.build @@ -216,6 +216,7 @@ if with_tests output: name + '.log', command: [crashdec, args, files('../.gitlab-ci/traces/' + name + '.devcore')], capture: true, + env: {'GALLIUM_DUMP_CPU': 'false'}, ) test('crashdec-' + name,
