summaryrefslogtreecommitdiffstats
path: root/yardstick/benchmark
diff options
context:
space:
mode:
authorVincenzo Riccobene <vincenzox.m.riccobene@intel.com>2016-01-14 13:55:57 +0000
committerJörgen Karlsson <jorgen.w.karlsson@ericsson.com>2016-01-14 17:04:04 +0000
commit09291f4499c36f7e30d3e6e3dc1364124b76e1a6 (patch)
tree5e00803822cd351affd485a461f07b9435b83f01 /yardstick/benchmark
parente4c2f55ac40eef239c0d0e5768a5c5d82177ef15 (diff)
Update results for Test Cases 6, 7, 20, 21
JIRA: YARDSTICK-219 Change-Id: I06143f074592e05cd17b740eb9751414a56c9fde Signed-off-by: Vincenzo Riccobene <vincenzo.m.riccobene@intel.com> Signed-off-by: Vincenzo Riccobene <vincenzox.m.riccobene@intel.com> (cherry picked from commit 9b8b765373abbb10289415312a24574ff122541a)
Diffstat (limited to 'yardstick/benchmark')
-rw-r--r--yardstick/benchmark/scenarios/networking/vtc_instantiation_validation.py6
-rw-r--r--yardstick/benchmark/scenarios/networking/vtc_instantiation_validation_noisy.py6
-rw-r--r--yardstick/benchmark/scenarios/networking/vtc_throughput.py6
-rw-r--r--yardstick/benchmark/scenarios/networking/vtc_throughput_noisy.py6
4 files changed, 16 insertions, 8 deletions
diff --git a/yardstick/benchmark/scenarios/networking/vtc_instantiation_validation.py b/yardstick/benchmark/scenarios/networking/vtc_instantiation_validation.py
index 509fa847b..bec23fc52 100644
--- a/yardstick/benchmark/scenarios/networking/vtc_instantiation_validation.py
+++ b/yardstick/benchmark/scenarios/networking/vtc_instantiation_validation.py
@@ -72,8 +72,9 @@ class VtcInstantiationValidation(base.Scenario):
test_case['params']['vlan_receiver'] = \
str(self.options['vlan_receiver'])
+ res = dict()
try:
- result = api.FrameworkApi.execute_framework(
+ res = api.FrameworkApi.execute_framework(
[test_case],
iterations,
heat_template,
@@ -82,4 +83,5 @@ class VtcInstantiationValidation(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)
diff --git a/yardstick/benchmark/scenarios/networking/vtc_instantiation_validation_noisy.py b/yardstick/benchmark/scenarios/networking/vtc_instantiation_validation_noisy.py
index 4834a5fc7..57b975811 100644
--- a/yardstick/benchmark/scenarios/networking/vtc_instantiation_validation_noisy.py
+++ b/yardstick/benchmark/scenarios/networking/vtc_instantiation_validation_noisy.py
@@ -79,8 +79,9 @@ class VtcInstantiationValidationNoisy(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,
@@ -89,4 +90,5 @@ class VtcInstantiationValidationNoisy(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)
diff --git a/yardstick/benchmark/scenarios/networking/vtc_throughput.py b/yardstick/benchmark/scenarios/networking/vtc_throughput.py
index fe7a88470..ff20279ff 100644
--- a/yardstick/benchmark/scenarios/networking/vtc_throughput.py
+++ b/yardstick/benchmark/scenarios/networking/vtc_throughput.py
@@ -72,8 +72,9 @@ class VtcThroughput(base.Scenario):
test_case['params']['vlan_receiver'] = \
str(self.options['vlan_receiver'])
+ res = dict()
try:
- result = api.FrameworkApi.execute_framework(
+ res = api.FrameworkApi.execute_framework(
[test_case],
iterations,
heat_template,
@@ -82,4 +83,5 @@ class VtcThroughput(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)
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)