From: Tibor Frank Date: Mon, 9 Jul 2018 14:00:28 +0000 (+0200) Subject: PAL: Treat the new and the old TC names X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=commitdiff_plain;h=28ac3a22615e19cafa7358508a24a9bd9b287544 PAL: Treat the new and the old TC names Signed-off-by: Tibor Frank Change-Id: If5999de81b4e062d38ce44871f0c4d4fa794b55c Signed-off-by: Tibor Frank --- diff --git a/resources/tools/presentation/input_data_parser.py b/resources/tools/presentation/input_data_parser.py index 91c7747752..57ec935de1 100644 --- a/resources/tools/presentation/input_data_parser.py +++ b/resources/tools/presentation/input_data_parser.py @@ -199,6 +199,12 @@ class ExecutionChecker(ResultVisitor): REGEX_BMRR = re.compile(r'Maximum Receive Rate Results \[(.*)\]') + REGEX_TC_TAG = re.compile(r'\d+[tT]\d+[cC]') + + REGEX_TC_NAME_OLD = re.compile(r'-\d+[tT]\d+[cC]-') + + REGEX_TC_NAME_NEW = re.compile(r'-\d+[cC]-') + def __init__(self, metadata): """Initialisation.