From 09291f4499c36f7e30d3e6e3dc1364124b76e1a6 Mon Sep 17 00:00:00 2001 From: Vincenzo Riccobene Date: Thu, 14 Jan 2016 13:55:57 +0000 Subject: Update results for Test Cases 6, 7, 20, 21 JIRA: YARDSTICK-219 Change-Id: I06143f074592e05cd17b740eb9751414a56c9fde Signed-off-by: Vincenzo Riccobene Signed-off-by: Vincenzo Riccobene (cherry picked from commit 9b8b765373abbb10289415312a24574ff122541a) --- .../benchmark/scenarios/networking/vtc_instantiation_validation.py | 6 ++++-- .../scenarios/networking/vtc_instantiation_validation_noisy.py | 6 ++++-- yardstick/benchmark/scenarios/networking/vtc_throughput.py | 6 ++++-- yardstick/benchmark/scenarios/networking/vtc_throughput_noisy.py | 6 ++++-- 4 files changed, 16 insertions(+), 8 deletions(-) (limited to 'yardstick/benchmark') 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) -- cgit 1.2.3-korg