X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=yardstick%2Fbenchmark%2Fscenarios%2Fnetworking%2Fvtc_throughput.py;h=ff20279ff2365529c97d9778d3f127e2390f7903;hb=b87e01af991e86abed92e42de35110dcc9713f0a;hp=fe7a8847013149bdb32939122643311fe17351a2;hpb=ea99867bd2a0618aff12ed977330d69467544dfd;p=yardstick.git 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)