Browse Source

DO NOT MERGE (Comment out until #557 is resolved)

Hamilton Turner 10 years ago
parent
commit
cac3d4e237
1 changed files with 3 additions and 2 deletions
  1. 3 2
      toolset/benchmark/framework_test.py

+ 3 - 2
toolset/benchmark/framework_test.py

@@ -1374,8 +1374,9 @@ def parse_config(config, directory, benchmarker):
       # Ensure FrameworkTest.framework is available
       if not test_keys['framework']:
         test_keys['framework'] = config['framework']
-      if test_keys['framework'] != config['framework']:
-        raise Exception("benchmark_config for test %s is invalid - test framework must match benchmark_config framework" % test_name)
+      #if test_keys['framework'].lower() != config['framework'].lower():
+      #  print Exception("benchmark_config for test %s is invalid - test framework '%s' must match benchmark_config framework '%s'" % 
+      #    (test_name, test_keys['framework'], config['framework']))
 
       # Confirm required keys are present
       # TODO have a TechEmpower person confirm this list - I don't know what the website requires....