From 79f792ad0585a94c178eb1b36b0a49360320f7be Mon Sep 17 00:00:00 2001 From: Alexander Alekhin Date: Thu, 31 Oct 2019 15:10:42 +0300 Subject: [PATCH] ts: do not block reporting of launched "DISABLED_" tests If tests are run through GTest option `--gtest_also_run_disabled_tests` --- modules/ts/misc/testlog_parser.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/ts/misc/testlog_parser.py b/modules/ts/misc/testlog_parser.py index 6152f99..2e9718b 100755 --- a/modules/ts/misc/testlog_parser.py +++ b/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 = { -- 2.7.4