Skip to content
Snippets Groups Projects
Commit c60cea0d authored by Daniel Stone's avatar Daniel Stone Committed by Marge Bot
Browse files

glsl/test: Don't run whitespace tests in parallel


For some unfathomable reason, three out of these four tests often time
out when running within CI. On the assumption that there is some
parallelisation badness happening rather than the non-UNIX tests
entering infinite loops, try just marking them as serial-only.

This should have a negligible impact on runtime since they are quick to
execute.

Signed-off-by: default avatarDaniel Stone <daniels@collabora.com>
Reviewed-by: Eric Engestrom's avatarEric Engestrom <eric@engestrom.ch>
Part-of: <mesa/mesa!6301>
parent aeba69de
No related branches found
No related tags found
No related merge requests found
......@@ -85,6 +85,13 @@ if with_any_opengl and with_tests and host_machine.system() != 'windows'
modes += ['valgrind']
endif
# For some unfathomable reason, three out of these four tests often time out
# when running within CI. On the assumption that there is some
# parallelisation badness happening rather than the non-UNIX tests entering
# infinite loops, try just marking them as serial-only.
#
# This should have a negligible impact on runtime since they are quick to
# execute.
foreach m : modes
test(
'glcpp test (@0@)'.format(m),
......@@ -96,6 +103,7 @@ if with_any_opengl and with_tests and host_machine.system() != 'windows'
],
suite : ['compiler', 'glcpp'],
timeout: 60,
is_parallel: false,
)
endforeach
endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment