mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
validate:launcher: Dump applied known issues in the logs
This commit is contained in:
parent
de007b6819
commit
e279b1ff56
1 changed files with 7 additions and 3 deletions
|
@ -287,9 +287,13 @@ class Test(Loggable):
|
||||||
f.write(info)
|
f.write(info)
|
||||||
|
|
||||||
def add_known_issue_information(self):
|
def add_known_issue_information(self):
|
||||||
info = "\n\n**You can mark the issues as 'known' by adding the " \
|
info = "\n\n**Already known issues**:\n\n``` python\n%s\n```\n\n" % (
|
||||||
+ " following lines to the list of known issues**\n" \
|
json.dumps(self.expected_issues)
|
||||||
+ "\n\n``` python\n%s\n```" % (self.generate_expected_issues())
|
)
|
||||||
|
|
||||||
|
info += "\n\n**You can mark the issues as 'known' by adding the " \
|
||||||
|
+ " following lines to the list of known issues**\n" \
|
||||||
|
+ "\n\n``` python\n%s\n```" % (self.generate_expected_issues())
|
||||||
|
|
||||||
if self.options.redirect_logs:
|
if self.options.redirect_logs:
|
||||||
print(info)
|
print(info)
|
||||||
|
|
Loading…
Reference in a new issue