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

scalability: runScalabilityTestSuite: Fix typo

parent 28cbd3be
...@@ -250,7 +250,7 @@ class ScalabilityLauncher(object): ...@@ -250,7 +250,7 @@ class ScalabilityLauncher(object):
self.log("Test Case %s is running..." %(current_test.title)) self.log("Test Case %s is running..." %(current_test.title))
try: try:
current_test_duration = int(current_test.title) current_test_number = int(current_test.title)
test_duration = suite.getTestDuration(current_test_number) test_duration = suite.getTestDuration(current_test_number)
benchmark_path_list = os.path.join(self.__argumentNamespace.erp5_location, test_path) benchmark_path_list = os.path.join(self.__argumentNamespace.erp5_location, test_path)
#TODO: generate a basic user file with all scalability users. #TODO: generate a basic user file with all scalability users.
...@@ -260,6 +260,8 @@ class ScalabilityLauncher(object): ...@@ -260,6 +260,8 @@ class ScalabilityLauncher(object):
self.log("user_number: %s" %str(user_number)) self.log("user_number: %s" %str(user_number))
self.log("test_duration: %ss" %str(test_duration)) self.log("test_duration: %ss" %str(test_duration))
#Here: wait for 0-pending activities ?
tester_process = subprocess.Popen([tester_path, tester_process = subprocess.Popen([tester_path,
self.__argumentNamespace.erp5_url, self.__argumentNamespace.erp5_url,
......
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