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,7 +30,8 @@ class TestInfo(object): ...@@ -30,7 +30,8 @@ class TestInfo(object):
self.status = xmlnode.getAttribute("status") self.status = xmlnode.getAttribute("status")
if self.name.startswith("DISABLED_"): if self.name.startswith("DISABLED_"):
self.status = "disabled" if self.status == 'notrun':
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_", "")
self.properties = { self.properties = {
......
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