Commit cec7cc03 authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #15819 from alalek:ts_unblock_reporting_of_disabled_tests

parents 5c12bafe 79f792ad
...@@ -30,6 +30,7 @@ class TestInfo(object): ...@@ -30,6 +30,7 @@ class TestInfo(object):
self.status = xmlnode.getAttribute("status") self.status = xmlnode.getAttribute("status")
if self.name.startswith("DISABLED_"): if self.name.startswith("DISABLED_"):
if self.status == 'notrun':
self.status = "disabled" self.status = "disabled"
self.fixture = self.fixture.replace("DISABLED_", "") self.fixture = self.fixture.replace("DISABLED_", "")
self.name = self.name.replace("DISABLED_", "") self.name = self.name.replace("DISABLED_", "")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment