From: Thibault Saunier Date: Thu, 6 Dec 2018 18:35:18 +0000 (-0300) Subject: validate:launcher: Make failure as in our xunit reporter X-Git-Tag: 1.19.3~491^2~475 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5767d553a6f2f921261e1531926a2ec9d511f9bb;p=platform%2Fupstream%2Fgstreamer.git validate:launcher: Make failure as in our xunit reporter I think it was a mistake to call them as the two notions are different (we marked failed test as "failures" in the node). Should make gitlab happy with our file! --- diff --git a/validate/launcher/reporters.py b/validate/launcher/reporters.py index 69f2d55..d3b6eaa 100644 --- a/validate/launcher/reporters.py +++ b/validate/launcher/reporters.py @@ -209,8 +209,8 @@ class XunitReporter(Reporter): self.encoding, 'replace') xml_file.write(self._forceUnicode( '' - '%(stacktrace)s' - '%(systemout)s' % + '%(stacktrace)s' + '%(systemout)s' % {'cls': self._quoteattr(test.get_classname()), 'name': self._quoteattr(test.get_name()), 'taken': test.time_taken,