summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorReid Kleckner <rnk@google.com>2019-10-31 15:23:45 -0700
committerReid Kleckner <rnk@google.com>2019-10-31 15:23:45 -0700
commitf9061049c1542579f661c3ec25528439ab9d0588 (patch)
tree1d01ecab03de06838b6150dc82a837225ef6eaf5
parent7ac4c31762fbe1605e2e701e4b48698f0f95a5c7 (diff)
downloadbcm5719-llvm-f9061049c1542579f661c3ec25528439ab9d0588.tar.gz
bcm5719-llvm-f9061049c1542579f661c3ec25528439ab9d0588.zip
Quote path to Python 3 executable in case it contains spaces
-rw-r--r--debuginfo-tests/lit.cfg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/debuginfo-tests/lit.cfg.py b/debuginfo-tests/lit.cfg.py
index a8d23f34fe6..82e9b80b06f 100644
--- a/debuginfo-tests/lit.cfg.py
+++ b/debuginfo-tests/lit.cfg.py
@@ -99,7 +99,7 @@ if lldb_path is not None:
# Produce dexter path, lldb path, and combine into the %dexter substitution
dexter_path = os.path.join(config.debuginfo_tests_src_root,
'dexter', 'dexter.py')
-dexter_cmd = '{} {} test'.format(config.python3_executable, dexter_path)
+dexter_cmd = '"{}" "{}" test'.format(config.python3_executable, dexter_path)
if lldb_path is not None:
dexter_cmd += ' --lldb-executable {}'.format(lldb_path)
OpenPOWER on IntegriCloud