Merge "run ipv6 test case on more pods"
[yardstick.git] / yardstick / benchmark / scenarios / networking / vtc_instantiation_validation.py
index 509fa84..bec23fc 100644 (file)
@@ -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)