Commit 4e2da560 authored by Benjamin Blanc's avatar Benjamin Blanc

util: runScalabilityTestSuite: Add try/except for tester call

parent 571bf721
...@@ -139,6 +139,7 @@ class ScalabilityLauncher(object): ...@@ -139,6 +139,7 @@ class ScalabilityLauncher(object):
# Here call a runScalabilityTest ( placed on product/ERP5Type/tests ) ? # Here call a runScalabilityTest ( placed on product/ERP5Type/tests ) ?
self.log("Test Case %s is running..." %(current_test.title)) self.log("Test Case %s is running..." %(current_test.title))
# Call the performance_tester_erp5 # Call the performance_tester_erp5
try:
call(["performance_tester_erp5", call(["performance_tester_erp5",
self.__argumentNamespace.erp5_url, self.__argumentNamespace.erp5_url,
'1', '1',
...@@ -148,6 +149,9 @@ class ScalabilityLauncher(object): ...@@ -148,6 +149,9 @@ class ScalabilityLauncher(object):
'--filename-prefix', "performance_tester_erp5_%s_" %(current_test.title), '--filename-prefix', "performance_tester_erp5_%s_" %(current_test.title),
'--report-directory', self.__argumentNamespace.log_path, '--report-directory', self.__argumentNamespace.log_path,
]) ])
except:
self.log("Error during tester call.")
raise ValueError("Tester call failed")
self.log("Test Case %s is finish" %(current_test.title)) self.log("Test Case %s is finish" %(current_test.title))
current_test.stop() current_test.stop()
self.log("Test Case Stopped") self.log("Test Case Stopped")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment