aboutsummaryrefslogtreecommitdiffstats
path: root/resources
diff options
context:
space:
mode:
authorTibor Frank <tifrank@cisco.com>2018-07-09 16:00:28 +0200
committerTibor Frank <tifrank@cisco.com>2018-07-10 11:25:49 +0000
commit28ac3a22615e19cafa7358508a24a9bd9b287544 (patch)
treed83c0d9a512ff2294cee58fabd994f96efd488f0 /resources
parent61ef529d33efd51acd1b1986c325d25a9d7ba705 (diff)
PAL: Treat the new and the old TC names
Signed-off-by: Tibor Frank <tifrank@cisco.com> Change-Id: If5999de81b4e062d38ce44871f0c4d4fa794b55c Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'resources')
-rw-r--r--resources/tools/presentation/input_data_parser.py6
1 files changed, 6 insertions, 0 deletions
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.