mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-09-03 10:43:55 +00:00
validate: Add support for the new testbin protocol
This commit is contained in:
parent
78698808d2
commit
c93f1704f8
1 changed files with 8 additions and 4 deletions
|
@ -747,10 +747,10 @@ not been tested and explicitely activated if you set use --wanted-tests ALL""")
|
||||||
bugs = []
|
bugs = []
|
||||||
p = get_data_file('data', 'gstvalidate.supp')
|
p = get_data_file('data', 'gstvalidate.supp')
|
||||||
with open(p) as f:
|
with open(p) as f:
|
||||||
for l in f.readlines():
|
for line in f.readlines():
|
||||||
l = l.strip()
|
line = line.strip()
|
||||||
if l.startswith('# PENDING:'):
|
if line.startswith('# PENDING:'):
|
||||||
tmp = l.split(' ')
|
tmp = line.split(' ')
|
||||||
bugs.append(tmp[2])
|
bugs.append(tmp[2])
|
||||||
|
|
||||||
if bugs:
|
if bugs:
|
||||||
|
@ -999,6 +999,10 @@ not been tested and explicitely activated if you set use --wanted-tests ALL""")
|
||||||
# ("hls.playback.seek_with_stop.*",
|
# ("hls.playback.seek_with_stop.*",
|
||||||
# "https://bugzilla.gnome.org/show_bug.cgi?id=753689"),
|
# "https://bugzilla.gnome.org/show_bug.cgi?id=753689"),
|
||||||
|
|
||||||
|
# testbin known issues
|
||||||
|
("testbin.media_check.*",
|
||||||
|
"Not supported by GstDiscoverer."),
|
||||||
|
|
||||||
# dash known issues
|
# dash known issues
|
||||||
("dash.media_check.*",
|
("dash.media_check.*",
|
||||||
"Caps are different depending on selected bitrates, etc"),
|
"Caps are different depending on selected bitrates, etc"),
|
||||||
|
|
Loading…
Reference in a new issue