mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 13:53:19 +00:00
validate:launcher: Fix setting meson tests as "parallel"
This commit is contained in:
parent
9ab1d3b6fb
commit
b971a7cd23
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ class MesonTest(Test):
|
|||
|
||||
Test.__init__(self, test_infos['cmd'][0], name, options,
|
||||
reporter, timeout=timeout, hard_timeout=timeout,
|
||||
is_parallel=getattr(test_infos, 'is_parallel', True),
|
||||
is_parallel=test_infos.get('is_parallel', True),
|
||||
workdir=test_infos['workdir'])
|
||||
|
||||
self.test_infos = test_infos
|
||||
|
|
Loading…
Reference in a new issue