Commit 195a2e10 authored by Benjamin Blanc's avatar Benjamin Blanc

testnode: ScalabilityTestRunner: Fix bug when it exists multi equal cluster configuration

parent 60637f98
...@@ -299,10 +299,7 @@ late a SlapOS (positive) answer." %(str(os.getpid()),str(os.getpid()),)) ...@@ -299,10 +299,7 @@ late a SlapOS (positive) answer." %(str(os.getpid()),str(os.getpid()),))
if not self.launchable: if not self.launchable:
self.log("Current test_suite is not actually launchable.") self.log("Current test_suite is not actually launchable.")
return {'status_code' : 1} # Unable to continue due to not realizable configuration return {'status_code' : 1} # Unable to continue due to not realizable configuration
test_list = range(0, len(configuration_list))
configuration_list = node_test_suite.configuration_list
test_list = [ configuration_list.index(configuration)
for configuration in configuration_list ]
# create test_result # create test_result
test_result_proxy = self.testnode.portal.createTestResult( test_result_proxy = self.testnode.portal.createTestResult(
node_test_suite.revision, test_list, node_test_suite.revision, test_list,
......
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