mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 06:58:56 +00:00
validate: Blacklist racy tests
See https://bugzilla.gnome.org/show_bug.cgi?id=769894
This commit is contained in:
parent
53fb174443
commit
ce35412ff2
1 changed files with 8 additions and 0 deletions
|
@ -264,6 +264,14 @@ Available options:""")
|
||||||
return self.tests
|
return self.tests
|
||||||
|
|
||||||
def register_defaults(self, project_paths=None):
|
def register_defaults(self, project_paths=None):
|
||||||
|
# Blacklist cases
|
||||||
|
self.set_default_blacklist(
|
||||||
|
[
|
||||||
|
# Race in validate checking for proper seek execution with GES
|
||||||
|
("ges.playback.scrub",
|
||||||
|
"https://bugzilla.gnome.org/show_bug.cgi?id=769894")
|
||||||
|
]
|
||||||
|
)
|
||||||
projects = list()
|
projects = list()
|
||||||
if not self.args:
|
if not self.args:
|
||||||
if project_paths == None:
|
if project_paths == None:
|
||||||
|
|
Loading…
Reference in a new issue