mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-01 21:18:52 +00:00
validate:launcher: Always print final report + enhance output
This commit is contained in:
parent
35b6bfb7c8
commit
24fe345f73
2 changed files with 3 additions and 1 deletions
|
@ -375,10 +375,10 @@ user argument, you can thus overrides command line options using that.
|
|||
e = None
|
||||
try:
|
||||
tests_launcher.run_tests()
|
||||
tests_launcher.final_report()
|
||||
except Exception as e:
|
||||
pass
|
||||
finally:
|
||||
tests_launcher.final_report()
|
||||
httpsrv.stop()
|
||||
if e is not None:
|
||||
raise
|
||||
|
|
|
@ -105,6 +105,8 @@ class Reporter(Loggable):
|
|||
printc("Final Report:", title=True)
|
||||
for test in sorted(self.results, key=lambda test: test.result):
|
||||
printc(test)
|
||||
if test.result != Result.PASSED:
|
||||
print "\n"
|
||||
|
||||
print "\n"
|
||||
lenstat = (len("Statistics") + 1)
|
||||
|
|
Loading…
Reference in a new issue