aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/presentation/input_data_parser.py
diff options
context:
space:
mode:
authorTibor Frank <tifrank@cisco.com>2020-01-27 15:24:08 +0100
committerTibor Frank <tifrank@cisco.com>2020-01-28 09:39:36 +0000
commit6716e51e3a27cfd2850a399c9ccc2818c2038eaf (patch)
tree5e943c0c5e1d8ed0ada2007ed42737309697b0ed /resources/tools/presentation/input_data_parser.py
parentf7452e826cd83fc5ded28c1268f6f4aab252ca2d (diff)
PAL: Add latency by percentile graph
Change-Id: I38c03e089fd709afc848ecec55474d5c6925a58e Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'resources/tools/presentation/input_data_parser.py')
-rw-r--r--resources/tools/presentation/input_data_parser.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/tools/presentation/input_data_parser.py b/resources/tools/presentation/input_data_parser.py
index eeabaa8557..574f4950de 100644
--- a/resources/tools/presentation/input_data_parser.py
+++ b/resources/tools/presentation/input_data_parser.py
@@ -654,9 +654,9 @@ class ExecutionChecker(ResultVisitor):
},
}
- groups = re.search(self.REGEX_NDRPDR_LAT, msg)
+ groups = re.search(self.REGEX_NDRPDR_LAT_LONG, msg)
if groups is None:
- groups = re.search(self.REGEX_NDRPDR_LAT_LONG, msg)
+ groups = re.search(self.REGEX_NDRPDR_LAT, msg)
if groups is None:
return latency, u"FAIL"