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: ff05da7f8d ("microsoft: Add CLC frontend and kernel/compute support to DXIL converter")
Reviewed-by: Daniel Stone <daniels@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7872>
This commit is contained in:
Erik Faye-Lund 2020-12-02 14:45:20 +01:00 committed by Marge Bot
parent a7fb25bfe4
commit 2c9e7f73ad

View file

@ -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)