Skip to content

Commit 2d2e66e

Browse files
jh7370memfrob
authored andcommitted
[test][Dexter] Fix test failure if space in python path
The '%dexter_regression_test' substitution was missing quotes around the python executable, unlike other substitutions of a similar nature in the file. This changes fixes the issue. Differential Revision: https://reviews.llvm.org/D96420 Reviewed by: jmorse, aganea
1 parent db13269 commit 2d2e66e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

debuginfo-tests/lit.cfg.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,8 @@ def get_required_attr(config, attr_name):
130130
# ./path_to_py/python.exe ./path_to_dex/dexter.py test --fail-lt 1.0 -w --builder clang --debugger lldb --cflags '-O0 -g'
131131
dexter_regression_test_command = ' '.join(
132132
# "python3", "dexter.py", test, fail_mode, builder, debugger, cflags, ldflags
133-
["{}".format(config.python3_executable),
134-
"{}".format(dexter_path),
133+
['"{}"'.format(config.python3_executable),
134+
'"{}"'.format(dexter_path),
135135
'test',
136136
'--fail-lt 1.0 -w',
137137
dexter_regression_test_builder,

0 commit comments

Comments
 (0)