Skip to content

Commit b42d51b

Browse files
committed
[lldb/test] Replace shlex.join with shlex.quote
join is only available since python-3.8, but the all the interesting magic happens in shlex.quote, which has been around since 3.3. Use shlex.quote, and instead provide a home-grown helper function to handle the joining. Differential Revision: https://reviews.llvm.org/D112802
1 parent 11630db commit b42d51b

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

lldb/packages/Python/lldbsuite/support/seven.py

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import binascii
22
import six
3+
import shlex
34

45
if six.PY2:
56
import commands
@@ -49,3 +50,7 @@ def unhexlify(hexstr):
4950
def hexlify(data):
5051
"""Hex-encode string data. The result if always a string."""
5152
return bitcast_to_string(binascii.hexlify(bitcast_to_bytes(data)))
53+
54+
# TODO: Replace this with `shlex.join` when minimum Python version is >= 3.8
55+
def join_for_shell(split_command):
56+
return " ".join([shlex.quote(part) for part in split_command])

lldb/packages/Python/lldbsuite/test/lldbtest.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@
4545
import re
4646
import shutil
4747
import signal
48-
import shlex
4948
from subprocess import *
5049
import sys
5150
import time
@@ -68,6 +67,7 @@
6867
from . import test_categories
6968
from lldbsuite.support import encoded_file
7069
from lldbsuite.support import funcutils
70+
from lldbsuite.support import seven
7171
from lldbsuite.test.builders import get_builder
7272
from lldbsuite.test_event import build_exception
7373

@@ -1423,7 +1423,7 @@ def build(
14231423
self.runBuildCommand(command)
14241424

14251425
def runBuildCommand(self, command):
1426-
self.trace(shlex.join(command))
1426+
self.trace(seven.join_for_shell(command))
14271427
try:
14281428
output = check_output(command, stderr=STDOUT, errors="replace")
14291429
except CalledProcessError as cpe:

lldb/packages/Python/lldbsuite/test_event/build_exception.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import shlex
1+
from lldbsuite.support import seven
22

33
class BuildError(Exception):
44

55
def __init__(self, called_process_error):
66
super(BuildError, self).__init__("Error when building test subject")
7-
self.command = shlex.join(called_process_error.cmd)
7+
self.command = seven.join_for_shell(called_process_error.cmd)
88
self.build_error = called_process_error.output
99

1010
def __str__(self):

0 commit comments

Comments
 (0)