mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 13:06:23 +00:00
validate: launcher: Fix printing of errors in final report
https://bugzilla.gnome.org/show_bug.cgi?id=736138
This commit is contained in:
parent
20633cec19
commit
94efe0df85
1 changed files with 2 additions and 2 deletions
|
@ -346,10 +346,10 @@ class GstValidateTest(Test):
|
|||
errors = []
|
||||
for l in open(self.validatelogs, 'r').readlines():
|
||||
if "critical : " in l:
|
||||
if ret != "[":
|
||||
ret += ", "
|
||||
error = l.split("critical : ")[1].replace("\n", '')
|
||||
if error not in errors:
|
||||
if ret != "[":
|
||||
ret += ", "
|
||||
ret += error
|
||||
errors.append(error)
|
||||
|
||||
|
|
Loading…
Reference in a new issue