mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 19:21:06 +00:00
validate:launcher: Take our timeout factor into account for gstcheck
This commit is contained in:
parent
0b3ce37eea
commit
d543375948
1 changed files with 3 additions and 1 deletions
|
@ -284,8 +284,10 @@ class GstCheckTestsManager(MesonTestsManager):
|
|||
child_env['GST_CHECKS'] = check_name
|
||||
|
||||
if self.options.valgrind:
|
||||
child_env['CK_TIMEOUT_MULTIPLIER'] = str(VALGRIND_TIMEOUT_FACTOR)
|
||||
child_env['CK_TIMEOUT_MULTIPLIER'] = str(VALGRIND_TIMEOUT_FACTOR * self.options.timeout_factor)
|
||||
child_env['ORC_CODE'] = 'backup'
|
||||
else:
|
||||
child_env['CK_TIMEOUT_MULTIPLIER'] = str(self.options.timeout_factor)
|
||||
|
||||
if self.options.gdb:
|
||||
child_env['CK_FORK'] = "no"
|
||||
|
|
Loading…
Reference in a new issue