Module: Mesa Branch: master Commit: 2c9e7f73ad9514e3b602a365e74edaec64f09ece URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=2c9e7f73ad9514e3b602a365e74edaec64f09ece
Author: Erik Faye-Lund <[email protected]> Date: Wed Dec 2 14:45:20 2020 +0100 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 <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7872> --- 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) _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
