aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/benchmark/core/task.py
diff options
context:
space:
mode:
authorKubi <jean.gaoliang@huawei.com>2017-08-10 01:18:55 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-08-10 01:18:55 +0000
commit7322829b9f4e3981f9c6214b37f5693c0963b159 (patch)
tree829529551e3fb75792328024d628cfcd4039ba9b /yardstick/benchmark/core/task.py
parent80c1d81ead5a5416e7e40f49ffc80a525e5737e0 (diff)
parent7c5a6396aaf939a5e566c7e86a96672251627af2 (diff)
Merge "bugfix: tc025 and tc054 fail"
Diffstat (limited to 'yardstick/benchmark/core/task.py')
-rw-r--r--yardstick/benchmark/core/task.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/yardstick/benchmark/core/task.py b/yardstick/benchmark/core/task.py
index 2b10c61b3..703bb6d95 100644
--- a/yardstick/benchmark/core/task.py
+++ b/yardstick/benchmark/core/task.py
@@ -123,7 +123,7 @@ class Task(object): # pragma: no cover
except KeyboardInterrupt:
raise
except Exception:
- LOG.exception('')
+ LOG.exception("Running test case %s failed!", case_name)
testcases[case_name] = {'criteria': 'FAIL', 'tc_data': []}
else:
testcases[case_name] = {'criteria': 'PASS', 'tc_data': data}
@@ -605,7 +605,8 @@ def get_networks_from_nodes(nodes):
for node in nodes.values():
if not node:
continue
- for interface in node['interfaces'].values():
+ interfaces = node.get('interfaces', {})
+ for interface in interfaces.values():
vld_id = interface.get('vld_id')
# mgmt network doesn't have vld_id
if not vld_id: