Merge pull request #15819 from alalek:ts_unblock_reporting_of_disabled_tests

pull/15826/head
Alexander Alekhin 5 years ago
commit cec7cc037b
  1. 3
      modules/ts/misc/testlog_parser.py

@ -30,7 +30,8 @@ class TestInfo(object):
self.status = xmlnode.getAttribute("status")
if self.name.startswith("DISABLED_"):
self.status = "disabled"
if self.status == 'notrun':
self.status = "disabled"
self.fixture = self.fixture.replace("DISABLED_", "")
self.name = self.name.replace("DISABLED_", "")
self.properties = {

Loading…
Cancel
Save