diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py index e31fc3098059174bd66040d3fb8517eebe5e3df7..6e4a1499e721b0463a02c27cc3d28a0d83b52c19 100755 --- a/tools/run_tests/run_tests.py +++ b/tools/run_tests/run_tests.py @@ -480,7 +480,7 @@ class Build(object): # different configurations we can run under with open('tools/run_tests/configs.json') as f: - _CONFIGS = dict((cfg['config'], Config(**cfg)) for cfg in json.loads(f.read())) + _CONFIGS = dict((cfg['config'], Config(**cfg)) for cfg in ast.literal_eval(f.read())) _DEFAULT = ['opt']