Skip to content

Commit 83bcf72

Browse files
committed
Formatting fix
1 parent 77b2ad3 commit 83bcf72

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

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

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -776,7 +776,15 @@ def canRunLibcxxTests():
776776

777777
if platform == "linux":
778778
with tempfile.NamedTemporaryFile() as f:
779-
cmd = [configuration.compiler, "-xc++", "-stdlib=libc++", "-l:libc++.so", "-o", f.name, "-"]
779+
cmd = [
780+
configuration.compiler,
781+
"-xc++",
782+
"-stdlib=libc++",
783+
"-l:libc++.so",
784+
"-o",
785+
f.name,
786+
"-",
787+
]
780788
p = subprocess.Popen(
781789
cmd,
782790
stdin=subprocess.PIPE,

0 commit comments

Comments
 (0)