summaryrefslogtreecommitdiffstats
path: root/yardstick/benchmark/scenarios/networking/vtc_throughput_noisy.py
diff options
context:
space:
mode:
Diffstat (limited to 'yardstick/benchmark/scenarios/networking/vtc_throughput_noisy.py')
-rw-r--r--yardstick/benchmark/scenarios/networking/vtc_throughput_noisy.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/yardstick/benchmark/scenarios/networking/vtc_throughput_noisy.py b/yardstick/benchmark/scenarios/networking/vtc_throughput_noisy.py
index ad3832fb5..703e06cf8 100644
--- a/yardstick/benchmark/scenarios/networking/vtc_throughput_noisy.py
+++ b/yardstick/benchmark/scenarios/networking/vtc_throughput_noisy.py
@@ -78,8 +78,9 @@ class VtcThroughputNoisy(base.Scenario):
test_case['params']['number_of_cores'] = \
str(self.options['number_of_cores'])
+ res = dict()
try:
- result = api.FrameworkApi.execute_framework(
+ res = api.FrameworkApi.execute_framework(
[test_case],
iterations,
heat_template,
@@ -88,4 +89,5 @@ class VtcThroughputNoisy(base.Scenario):
openstack_credentials)
except Exception as e:
LOG.info('Exception: {}'.format(e.message))
- LOG.info('Got output: {}'.format(result))
+ LOG.info('Got output: {}'.format(res))
+ result.update(res)