aboutsummaryrefslogtreecommitdiffstats
path: root/resources
diff options
context:
space:
mode:
authorTibor Frank <tifrank@cisco.com>2019-03-25 13:32:52 +0100
committerTibor Frank <tifrank@cisco.com>2019-03-25 13:32:52 +0100
commit3e06f8130ec9df4b6cc0241156be6744b47955ca (patch)
tree5f148fabd0536d6a88211d72dcee6bc6d581a5a7 /resources
parent52960c7ed875f0fda48cd23a9a4d74274a0a2daf (diff)
Trending: Fix vpp-ref
Change-Id: I3179175f681a99709445e6603711060e46fa8885 Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'resources')
-rw-r--r--resources/tools/presentation/input_data_parser.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/resources/tools/presentation/input_data_parser.py b/resources/tools/presentation/input_data_parser.py
index 37194217a1..8feb057e28 100644
--- a/resources/tools/presentation/input_data_parser.py
+++ b/resources/tools/presentation/input_data_parser.py
@@ -411,7 +411,8 @@ class ExecutionChecker(ResultVisitor):
"""
if msg.message.count("return STDOUT Version:") or \
- msg.message.count("VPP Version:"):
+ msg.message.count("VPP Version:") or \
+ msg.message.count("VPP version:"):
self._version = str(re.search(self.REGEX_VERSION_VPP, msg.message).
group(2))
self._data["metadata"]["version"] = self._version