From 2c9e7f73ad9514e3b602a365e74edaec64f09ece Mon Sep 17 00:00:00 2001 From: Erik Faye-Lund Date: Wed, 2 Dec 2020 14:45:20 +0100 Subject: [PATCH] microsoft/clc: increase test-timeout The test "clc_compiler_test" is kinda nasty in packing too many things into a single test, making it awkwardly long. We should really consider splitting it up into multiple tests instead. But right now, it's sometimes timing out on CI, which is bad, so here's a quick band-aid to prevent this from happening. The previous timeout of two minutes seems to not always be sufficient under various loads, so let's add another minute just to be sure. Here's an example of a failure with the current timeout: https://gitlab.freedesktop.org/mesa/mesa/-/jobs/5918980#L1589 Fixes: ff05da7f8dc ("microsoft: Add CLC frontend and kernel/compute support to DXIL converter") Reviewed-by: Daniel Stone Part-of: --- src/microsoft/clc/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/microsoft/clc/meson.build b/src/microsoft/clc/meson.build index d4a1553e6df..d89e8b6a3e2 100644 --- a/src/microsoft/clc/meson.build +++ b/src/microsoft/clc/meson.build @@ -65,4 +65,4 @@ clc_compiler_test = executable('clc_compiler_test', dependencies : [idep_gtest, idep_mesautil], include_directories : [inc_include, inc_src]) -test('clc_compiler_test', clc_compiler_test, timeout: 120) +test('clc_compiler_test', clc_compiler_test, timeout: 180)