Browse Source

Lower-case the test names for log dirs

This way we can link them up automatically on the front
end results site.
msmith-techempower 10 years ago
parent
commit
495f77eee4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      toolset/benchmark/benchmarker.py

+ 1 - 1
toolset/benchmark/benchmarker.py

@@ -493,7 +493,7 @@ class Benchmarker:
       else:
         sys.exit(code)
 
-    logDir = os.path.join(self.latest_results_directory, 'logs', test.name)
+    logDir = os.path.join(self.latest_results_directory, 'logs', test.name.lower())
 
     try:
       os.makedirs(logDir)