summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThibault Saunier <tsaunier@igalia.com>2018-04-19 22:13:29 -0300
committerThibault Saunier <tsaunier@igalia.com>2018-05-13 09:44:17 -0400
commitc93f1704f817fb0b41a8e7a6d190b6c22c8e03d0 (patch)
tree0c5385f0587ddfbcf091196815b121301fd5e9b4
parent78698808d2c874a39d6f3f4f9553fbc123265882 (diff)
validate: Add support for the new testbin protocol
-rw-r--r--validate/launcher/apps/gstvalidate.py12
1 files changed, 8 insertions, 4 deletions
diff --git a/validate/launcher/apps/gstvalidate.py b/validate/launcher/apps/gstvalidate.py
index 87b87ba..c5d509c 100644
--- a/validate/launcher/apps/gstvalidate.py
+++ b/validate/launcher/apps/gstvalidate.py
@@ -747,10 +747,10 @@ not been tested and explicitely activated if you set use --wanted-tests ALL""")
bugs = []
p = get_data_file('data', 'gstvalidate.supp')
with open(p) as f:
- for l in f.readlines():
- l = l.strip()
- if l.startswith('# PENDING:'):
- tmp = l.split(' ')
+ for line in f.readlines():
+ line = line.strip()
+ if line.startswith('# PENDING:'):
+ tmp = line.split(' ')
bugs.append(tmp[2])
if bugs:
@@ -999,6 +999,10 @@ not been tested and explicitely activated if you set use --wanted-tests ALL""")
# ("hls.playback.seek_with_stop.*",
# "https://bugzilla.gnome.org/show_bug.cgi?id=753689"),
+ # testbin known issues
+ ("testbin.media_check.*",
+ "Not supported by GstDiscoverer."),
+
# dash known issues
("dash.media_check.*",
"Caps are different depending on selected bitrates, etc"),