mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 01:00:37 +00:00
validate:launcher: Add a way to say that a known issues can happen several times
This commit is contained in:
parent
ba69336bf8
commit
28d413f059
1 changed files with 2 additions and 1 deletions
|
@ -887,7 +887,8 @@ class GstValidateTest(Test):
|
|||
break
|
||||
|
||||
if found is not None:
|
||||
expected_issues.remove(found)
|
||||
if not found.get('can-happen-several-times', False):
|
||||
expected_issues.remove(found)
|
||||
if report['level'] == 'critical':
|
||||
if found.get('sometimes', True) and isinstance(expected_retcode, list):
|
||||
expected_retcode.append(18)
|
||||
|
|
Loading…
Reference in a new issue