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:40:45 +0000
commita89e6e3a7fb413394f83c7ff248aa234a265837c (patch)
tree7b70e9e8a60b0dd6793ccc6f519926465d38943d /resources/tools/presentation/input_data_parser.py
parent01b75c9d9d6d715faef4ee3136324c77dd05c2ad (diff)
PAL: Add latency by percentile graph
Change-Id: I38c03e089fd709afc848ecec55474d5c6925a58e Signed-off-by: Tibor Frank <tifrank@cisco.com> (cherry picked from commit 6716e51e3a27cfd2850a399c9ccc2818c2038eaf)
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"