|
@@ -443,10 +443,10 @@ class Benchmarker:
|
|
|
############################################################
|
|
|
def __run_test(self, test):
|
|
|
try:
|
|
|
- os.makedirs(os.path.join(self.latest_results_directory, 'logs', test.name))
|
|
|
+ os.makedirs(os.path.join(self.latest_results_directory, 'logs'))
|
|
|
except:
|
|
|
pass
|
|
|
- with open(os.path.join(self.latest_results_directory, 'logs', test.name, "out.log"), 'w') as out:
|
|
|
+ with open(os.path.join(self.latest_results_directory, 'logs', "{name}.log".format(name=test.name)), 'w') as out:
|
|
|
# If the user specified which tests to run, then
|
|
|
# we can skip over tests that are not in that list
|
|
|
if self.test != None and test.name not in self.test:
|