Reinstate quotes around the path to python that I accidentaly removed in r335330
This broke users with spaces in the path, like C:\Program Files\Python
llvm-svn: 335382
diff --git a/clang/test/lit.cfg.py b/clang/test/lit.cfg.py
index 5b11691..ad30988 100644
--- a/clang/test/lit.cfg.py
+++ b/clang/test/lit.cfg.py
@@ -70,7 +70,7 @@
llvm_config.add_tool_substitutions(tools, tool_dirs)
config.substitutions.append(
- ('%hmaptool', '%s %s' % (config.python_executable,
+ ('%hmaptool', "'%s' %s" % (config.python_executable,
os.path.join(config.llvm_tools_dir, 'hmaptool'))))
# Plugins (loadable modules)