validate:launcher: Fix setting meson tests as "parallel"

This commit is contained in:
Thibault Saunier 2018-11-28 10:11:00 -03:00
parent 9ab1d3b6fb
commit b971a7cd23

View file

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